thomasbromehead / Colmar

Final Project of Codecademy Pro Intensive Build Websites from Scratch
0 stars 0 forks source link

Connecting CSS to HTML #2

Open Rodrigap opened 6 years ago

Rodrigap commented 6 years ago

https://github.com/thomasbromehead/Colmar/blob/fb7ee24953f19a1d4e818bb8fcf1aebedb9dd8a6/index.html#L4

I'm not sure if this worked on your computer, but be sure to properly link your CSS file. You forgot to add the './' at the beginning of your href, so when I load your code, it shows up with no styling. This is how it should be:

<link href="./Resources/style.css" rel="stylesheet" type="text/css"/>

thomasbromehead commented 6 years ago

It worked on my computer as is yes, but will remember to link back to the root in future, thanks!