Skip to main content Skip to course content Envision Tech Academy Logo

Structuring a HTML Page

It is good practice to structure your HTML documents in a way that makes them easy to read and understand. Whether it's other users or your future self, you'll thank yourself for following these guidelines.

Here's an example of a well-structured HTML document:

<!DOCTYPE HTML>
<html>
    <head>
        <title>Page Title</title>
    </head>
    <body>
        <h2>Page content</h2>
        <p>More content</p>
    </body>
</html>

Here is a breakdown of what each tag means:

<span class="font-bold">!DOCTYPE HTML</span> declares that the page created is a HTML document

<span class="font-bold">&lt;html&gt;</span> demonstrates where all HTML code should be (this will be more useful later!)

<span class="font-bold">&lt;head&gt;</span> is where all metadata is placed (the data, about the data!)

<span class="font-bold">&lt;title&gt;</span> defines the title of the current page

<span class="font-bold">&lt;body&gt;</span> contains all the content on the page the user will be interacting and browsing.

<span class="italic text-gray-700">Note: indentation does not really matter with HTML, but it is good practice!</span>