Home > Blockchain >  Struggle connecting HTML/CSS - WebStorm
Struggle connecting HTML/CSS - WebStorm

Time:10-18

This might look a bit stupid, but I cannot seem to connect my HTML to my external CSS stylesheet.

Picture of my codes / directory

It doesn't change the color of my text. I have tried different CSS commands but nothing seems to work. Help would be greatly appreciated haha...

CodePudding user response:

Your css file names is style.css not "styles.css" the mistake is in your href link

CodePudding user response:

You wrote the wrong file name on your href by mistake. Just change it to style.css like this :

<link rel="stylesheet" href="style.css">
  • Related