...
In
HTMLexercise
folder create a new folder calledstyles
. Within this new folder create one stylesheet file per html page -i.e.AboutMeStyles.css
,FavouritesStyles.css
,ToDoListStyles.css
.Style your pages the way you like! you can change the background, font, colours, sizes…
Use Bootstrap to make your life easier.
If you see that some styles are repeated, create a new stylesheet file and put the styles there. Include this new file wherever you need these styles.
Don’t hesitate to get inspired online!
Reminder: To include an external stylesheet into your html page, place this tag inside the <head>
<link href="styles.css" rel="stylesheet" types="text/css" />
Make sure you change the name and location of your css file.