- Create the folder for your website
- Then create an index.html file inside of that folder.
- Open the index.html file and then populate it with HTML + tab.
- Next, create a Styles folder inside of your website folder.
- Then make a main.css file inside of your styles folder.
Folder Structure:
. ├── index.html └── styles └── main.css
- Inside the tag of your index.html, we need to add a link to our stylesheet. This is done via 'link' + TAB.