Notice that the html tags often form pairs, an opening and a closing tag:

<!doctype html>

<html>

<head>

<title> basic html page structure </title>

</head>

<body>


</body>

</html>

There are two main sections of every web page, the head and the body.

The head section contains information about the website, styling information, and the title tags.

All of what the audience can see on a website is in the body section of the html code, so this section grows and grows as the page content increases.