same folder?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

same folder??

I use an HTML editor that doesn't have a separate page for CSS. if I were to make a CSS page with all of my crap on it, should it be saved in the same folder as my HTML? will it pull it up or do I need to find a way to make it work?

7th Nov 2016, 6:44 PM
Thomas Campbell
Thomas Campbell - avatar
1 Answer
0
You can make it work, just be sure to link the stylesheet in your html. Put this in your html: <link rel="stylesheet" href="style.css" /> The above assumes your css file is named style.css and that it's in the same folder as your index.
7th Nov 2016, 6:53 PM
Lux
Lux - avatar