| BACK |
Kid's Guide
1 - Tags
2 - Page Sections
3 - Format/Nesting
4 - Head Tags
5 - Body tags
part 1 - paragraph and align
part 2 - text headers
part 3 - breaks & rules
6 - Text Decoration
7 - Lists
8 - Colour
9 - Source
10 - Images
11 - Links/Anchor Tag
12 - Special Charaters
13 - Tables
14 - Frames
|
Header = <hnumber></hnumber>
Header tag. If you want to large text/header, like the titles in a document, you put the words inside of a <hnumber></hnumber> tag.
Like this:
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
The numbers stand for different sizes of header text, they aslo vary in thickness and look.
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
Now the code should look like this:
<html>
<head>
<title>Jet Internet</title>
<meta name="keywords" content="Jet Internet, web design">
<meta name="description" content="This is my first web site.">
</head>
<body>
<h1 align="center">WELCOME!</h1>
<p>This is my very first web page.</p>
</body>
</html>

The same rules apply to headers as with paragraphs, you can use alignment in the same way.
|