Cascading Style Sheets (CSS) (Part 3)

css_3.html ● styles/main.css

Using styles for multiples pages

In order to use the same styles on every page, we can create an extra .css file, and include it in our header to our file:

<link rel="stylesheet" type="text/css" href="styles/main.css">

Now we have included the main.css file from the styles-folder into our project.

More about CSS