Installing HTML Boilerplate
We're going to start a fresh, so let's create a new file for this project. What I like to do when I start a project is download an HTML Boilerplate. HTML5 Boilerplate is a frontend template, created to help you build fast, robust, and adaptable web apps or sites. You basically download one package, and it contains all the files you need to start a project.
Let's go to https://html5boilerplate.com/ to download the latest version of the template:
![](https://static.packt-cdn.com/products/9781788395038/graphics/c28d52fe-2318-4f8f-a35e-71324708812f.png)
Click on Download v6.0.1
 or higher.
Let's have a look at what's inside our package:
![](https://static.packt-cdn.com/products/9781788395038/graphics/4b3c13c3-03ba-4810-9573-db3de2c87c6c.png)
There are plenty of files in the folder. What we can see is that it contains all the essential files a website needs to work properly:
index.html
: Our home page, the page where the user will land upon going to your website- TheÂ
css
folder: A folder for all our CSS files - TheÂ
img
folder: A folder for all our images - The
js
 folder: A folder for all our JS files favicon.ico
: An icon that shows up at the left corner of a tab of a browser that indicates...