Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
CSS stands for Cascading Style Sheets, CSS describes how HTML elements are to be displayed.
Is HTML and CSS a programming language?
No, technically HTML and CSS are not a programming languages; they're just page structure and style information.
HTML Documents
All HTML documents must start with a document type declaration: .
The HTML document itself begins with and ends with .
The visible part of the HTML document is between and .
HTML Document Structure
<html>
<head>
Page title, meta tags, file imports
</head>
<body>
Content of the page
</body>
</html>