|
Step 7 |
7. What we are going to do now is link your external style sheet
(stylesheet.css) to your newly created HTML page in order to make the rules you
just created apply. Use this code to link it:
<link href="stylesheet.css" rel="stylesheet" type="text/css">
Here is where it will go:
< html>
< head>
< title>My CSS Navigation</title>
< meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="stylesheet.css" rel="stylesheet" type="text/css">
</head>
<< Back Next >>
|
|