Basic HTML Template

Copy and paste this to start off your html projects:

<!DOCTYPE html>
<html lang='en'>

    <!--Meta data goes here!-->
    <head>

        <title>You'll see this on the tab name</title>

        <!--Link the css to the html-->
        <link href='filename.css' rel='stylesheet'>

    </head>

    <!--Main contents of the website you'll see will be here-->
    <body>

        <!--Introductory content ie. headings, navigation-->
        <header>

        </header>

        <!--The 'Meat' of the webpage-->
        <main>

        </main>

        <!--Similar to header but at the end! ie. author info, navigation, copyright-->
        <footer>

        </footer>

    </body>
</html>