All web pages consist of two parts that are marked as: <head> and <body> tags.
The <head> tag contains information about the html document. It is intended for browsers and is not visible to users.
The <body> tag contains everything you see on the page.
<html>
<head>
<meta charset="utf-8" />
<meta> - metadata tags
<title> title goes here </title>
<style> style sheet goes here </style>
<javascript> javascript goes here </javascript>
</head>
<body>
<h1> headings </h1>
<p> paragraphs </p>
<img> images </img>
<a> links </a>
<table> tables </table>
<li> lists </li>
</body>
</html>