our approach
|
new tutorials
|
contact us
HTML & CSS In Pictures
HTML Basics
Navigation & Layout
Interactivity
Advanced Layout
Apply formatting
Enclose the words
Dogs Home Page
in
<h1>
(heading, size 1) tags:
<html>
<head>
<link rel="stylesheet" href="format.css">
<title>A Home Page About Dogs</title>
</head>
<body>
<h1>
Dogs Home Page
</h1>
</body>
</html>
TIP:
There are six headings you can use on Web pages:
<h1>
is the largest,
<h6>
is the smallest.
Using headings in your pages makes them easier for search engines to index.
<< BACK
NEXT >>