thelasttimenj
07-20-2003, 04:01 PM
im confused about this ccs page
isnt it supposed to be a seperate page where you put the ccs at? lissa explained it like i had to put it on every html page..im confused, someone help me out here and explain a little more for me? :) i appreciate your help greatly, Thank You.!
kittycat
07-20-2003, 04:28 PM
You can include your CSS codes directly on your HTML page inbetween the <head> and </head> tags. You can also use an external stylesheet, with a link to it include between those two tags, or you can use a combination of both. You need to include either or on every page that you want the CSS to take effect on.
thelasttimenj
07-21-2003, 12:53 PM
so does that mean i just put the ccs information on a seperate notepad document? and just code it like this
<!--#include file="yourfilename.txt" -->
im really confused, im sorry
Thank You for Your Time.
lefty
07-21-2003, 03:15 PM
If you're using external css, the code on your page will look like this:
<link rel="stylesheet" type="text/css" href="stylesheet.css">
what you have up there is SSI. ;)
Also when you make your seperate css document, name it "stylesheet.css", with the quotes (or whatever you want to name it), or else it'll just be a .txt file. Did that make sense?