Valian
07-22-2005, 07:47 PM
How exactly do you link to an external css style sheet? :confused:
|
View Full Version : How exactly do you link to an external css style sheet? Valian 07-22-2005, 07:47 PM How exactly do you link to an external css style sheet? :confused: kittycat 07-22-2005, 07:53 PM Take your current stylesheet, remove the <style> tags, and save it as style.css (you can name it as anything you like, so long as it has the .css extension) Add this between the <head> tags: <link rel="stylesheet" type="text/css" href="style.css"> webgirl 07-22-2005, 07:54 PM <link href="your style sheets name or url.css" rel="stylesheet" type="text/css"> Valian 07-22-2005, 08:11 PM thanks :) |