HTML Page Structure

<!DOCTYPE html>    declaration defines that this document is an HTML5 document

<html>                            element is the root element of an HTML page
<head>              element contains meta information about the HTML page

<title>            Inside the <head> tags </title>  element contains a title for the HTML page, shown in
                      browser's title bar or in the page' tab.

</head>              Closing tag for the <head> tag

<body>

element defines the documtent's body, and is a container for all the visble contents,
such as headings, pagaraphs, images, hyperlinks, tables, lists, etc.

<h1> This element defines a large heading start and stop tag </h1>

<p> This element defines a paragraph start and stop tag.  </p>

<p> This Is another paragraph </p>

</body> is the closing tag for <body>

</html> is the closing tag for <html>

Index