Sublime Forum

Can't link .css file to my .html file

#1

I tried to link my main.css file into my index.html file but I’m not able to do it… I’m just beginning with programming and writing code so sorry for any inconveniences.

Thanks in advance.
Sebastian

P.S. Tips regarding writing manner or something else are also welcome.

0 Likes

#2

Your CSS/main.css is in another folder and not within the HTML folder. To make it work, try
../CSS/main.css. The .. in the beginning means to go up by one directory & then search if a CSS/main.css file exists.

2 Likes

#3

@UltraInstinct05 Thanks it worked!

0 Likes