2023 Web Development Bootcamp: Intermediate CSS -- Day 5 Part 1

 Day 5 of Angela Yu's Web Development Bootcamp and today I am learning more about CSS. I am continuing to work on a Real Madrid Fan webpage.


Favicons

I was able to find a Real Madrid favicon on favicon.cc and successfully downloaded it.  Unfortunately, I had problems with the link.

I first tried:

<link rel="icon" href="favicon.ico">

But this didn't work... so I used the following code:

<link rel="icon" href="favicon.ico?v=2">

This did the trick and now I have a nice favicon.


HTML Divs

DIV stands for content divider element. Need to remember that each browser comes with its own default styles.

I planned with the div elements and various styles and colors. Below is what I went with for the website today. I don't like the colors but it illustrates the div elements really well.








Comments

Popular posts from this blog

Space Wars- Python 3

Maze Game in Python using Turtle