03 - CSS - Exercise 1
In this exercise we will apply styles to the html pages you created in Exercise 1. Do not worry if you have not finished everything, you can either finish your html code or start with styling. Read all the instructions first before you decide what you want to do!
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.