Basic HTML Page Setup

Simple template for a basic html page

HTML

<!DOCTYPE html>

<html>
    <!-- basic html page -->
    <head>
        <title>Basic HTML Page</title>
    </head>
    
    <body>
        
        <!-- 2 main types of tags: block level & inline -->
        
        <h1 class="red blue">Website Title</h1>
        
        <p>This is paragraph text</p>
        
    </body>
    
</html>

CSS

.red{
  background-color: red;
}

.blue{
  background-color: blue;
}