our approach
|
new tutorials
|
contact us
HTML & CSS In Pictures
HTML Basics
Navigation & Layout
Interactivity
Advanced Layout
Integrate a style sheet
In Notepad, open the file
index.html
.
TIP:
You might have to click
All Files
in the
Files of type
drop-down list for the page to appear in the
Open
window.
Below the
<head>
tag, add a
<link>
tag that links the page to format.css:
<html>
<head>
<link rel="stylesheet" href="format.css">
<title>A Home Page About Dogs</title>
</head>
<body>
Dogs Home Page
</body>
</html>
Save
index.html
.
<< BACK
NEXT >>