| |
<Hn>
|
|
| |
Specifies headings ina document. headings are numbered 1-6, with <H1> representing the heading for the main heading in the document and <H3> representing a heading for a nested subtopic. Generally, text inside heading tags appears in boldface and may be larger than normal document text.
EXAMPLE:<H1>Main Title for website</H1>
This document text is related to the main topic above which is basically nothing exciting.
|
|
| |
|
|
| |
|
|
| |
<HEAD>
|
|
| |
Contains document head information.
EXAMPLE: <HTML> <HEAD> <TITLE>Example Title</TITLE></HEAD>
|
|
| |
|
|
| |
|
|
| |
<HR>
|
|
| |
Draws horizontal lines (rules) in your document. This useful for visually separting document sections.
EXAMPLE:
<H2 ALIGN="left">Example Thing</H2>
<HR ALIGN="left" WIDTH="60%">
<P>Some crazy text here just to show an example.</P>
|
|
| |
|
|
| |
|
|
| |
<HTML>
|
|
| |
Contains the entire document. Place these tags at the top of and bottem of your HTML file.
EXAMPLE:
<HTML>
<HEAD>
<TITLE>Example Title</TITLE>
</HEAD>
<BODY>
Page content here
</BODY>
</HTML>
|
|
| |
|
|
| |
|
|