How to Create a New index.html file

We had trouble creating a blank index.html file, and we would forget to add the basic elements of an html page. This post is to avoid repeating the same mistake of being unsure in creating an html page. Open Up terminal and start with the initial commands up until opening Projects up. Once in projects, commit the following commands to create an empty index.html file:

After completing the coding structure in Terminal, open up Sublime text and open up the folder you created. On sublime text in the index.html section, add the skeleton from the following website.

<!DOCTYPE html>
<html>
    <head>
        <!-- head definitions go here -->
    </head>
    <body>
        <!-- the content goes here -->
    </body>
</html>
·