View Full Version : External Style Sheets


Brown_Eyed_Girl
06-06-2003, 01:26 AM
Hey..alrite on the main CSS page, it says you can link to an external style sheet, so that if you wanna change your whole website you can just change the one style sheet and it will all change..how do you link it to the external style sheet? Thanks

alkaline39
06-06-2003, 01:31 AM
<link rel="stylesheet" type="text/css" href="style.css">

where style.css is your stylesheet

Brown_Eyed_Girl
06-06-2003, 01:33 AM
okay, so i just save it as a text document and then save it on my host server? and then put that code after the <BODY> tag?

alkaline39
06-06-2003, 01:35 AM
first of all, when you save in notepad make sure that File Type is set to All Files
then in the name type style.css
then upload to your host, then between the head tags put the code in my first post

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
asdkjh
</body>
</html>

Brown_Eyed_Girl
06-06-2003, 01:39 AM
ook got it..thanks so much!