Welcome to My website.

HTML Basics

Hello this is page has some of the HTML basics. Whats youll see here is about the structure of the content. An element refers to something inside <opening> these <closing> the first one is a opening element tag and the second one is the closing tag. The code will always be stuctured like the sample below.
The html is the root element, which means its the container of all the other elements in the page.
The head element houses meta data, and data used in searches. it also has the title element inside it.
The title element changes what appears as the name of the tab your website is on.
The body element contains all the main content of a page.
The header element goes inside the body and displays the header of the page.
the main element goes inside the body after the header. It houses where most of the page text content will be. When set up correctly it should look like this.

<html>
    <head>
        <title> </title>

    </head>
    <body>
        <header> </header>
        <main>

        </main>
    </body>
</html>
                

You use <p> </p> tags for paragraph/text. It goes inside of the main element.