<!DOCTYPE html>

<html>

<head>

<title>Example Webpage Title</title>

</head>

<body>

</body>

</html>

Notice how the body tag closes, then the <html> tag closes? Remember, a tag must close directly after the opening tag without any other closing tag in between.

This basic structure defines the basis of all webpages, and is what we will be working from going forward. In the next chapter we will be writing our HTML code between these body tags. This is the code that the browser will interpret and display to the end user.