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?
1 Respuesta
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.