HTML is the standard markup language for creating Web pages.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html><!DOCTYPE html> declaration defines this document to be HTML5<html> element is the root element of an HTML page<head> element contains meta information about the document<title> element specifies a title for the document<body> element contains the visible page content<h1> element defines a large heading<p> element defines a paragraphHTML tags are element names surrounded by angle brackets:
<tagname>content goes here...</tagname><p> and </p>Tip: The start tag is also called the opening tag, and the end tag the closing tag.