Every web page is contained between an opening an closing <html> tag (the closing tag being </html>).
The simplest web page you could make would look something like this:
<html>
<head>
<title>My Page Title</title>
</head>
<body>
This is the content of my web page!
</body>
<html>