Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. In HTMLexercise folder create a new folder called styles. Within this new folder create one stylesheet file per html page -i.e. AboutMeStyles.css, FavouritesStyles.css, ToDoListStyles.css .

  2. Style your pages the way you like! you can change the background, font, colours, sizes…

  3. Use Bootstrap to make your life easier.

  4. 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.

  5. 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.