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 !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|