Search
User login
How to make a CSS style: external CSS style sheet help
To make a CSS style, first create a CSS style sheet, perhaps called styles.css and put it in the same directory as your HTML page. Then reference it using the following tag:
< link href="style.css" rel="stylesheet" type="text/css" media="screen" >
Once you do that, edit the CSS file. Add any styles that you would like to have, such as:
a:link {
COLOR: #0000FF;
}
Once you do this, load the page in a browser to test it. Your new external CSS style sheet should now be visible.
Categories