Quote:
<link rel="stylesheet" media="screen,projection" type="text/css" href="./css/main.css" />
<link rel="stylesheet" media="print" type="text/css" href="./css/print.css" />
<link rel="stylesheet" media="aural" type="text/css" href="./css/aural.css" />
|
According to that you need a folder called "css". If you cannot create that folder on your host server then you need to change the path in the above link tags to this :
<link rel="stylesheet" media="screen,projection" type="text/css" href="main.css" />
<link rel="stylesheet" media="print" type="text/css" href="print.css" />
<link rel="stylesheet" media="aural" type="text/css" href="aural.css" />
Then all the HTML and the CSS files will be in the SAME FOLDER.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|