Body Elements
H1
H2
H3
H4
H5
H6HeadingText of the Element is a section heading. Headings are numbered
and displayed in order of decreasing importance. Headings are separate
paragraphs.ALIGN
<H1 ALIGN="CENTER">Page Name</H1>
<H2>Section Heading</H2> Page Name
Section Heading
PParagraphDefines paragraphs in the document. Usually paragraphsALIGN
<P>First paragraph, no content.</P>
<P>Second paragraph, slightly more content here.</P> First paragraph, no
content.
BASIC HTML ELEMENTS
Document Element
HTMLHTMLTells browser that the included text is in HTML formatElement
includes Head, Body, and other elements
<HTML>
<HEAD></HEAD>
<BODY>
</BODY>
</HTML>
HEADHeaderIncludes 'header', non-displaying information about the
document, like the TITLE and other descriptive tagsElement can include
Title, Meta, Base and other elements
<HEAD>
<TITLE>Basic HTML Elements</TITLE>
</HEAD>
TITLEDocument TitleTitle that appears in Browser header and on bookmark
lists. Should be concise and meaningful.
<TITLE>Basic HTML Elements</TITLE>[see top of this page]
BODYDocument BodyDefines the content of the document.BGCOLOR, BACKGROUND,
TEXT, LINK, ALINK, VLINK
<BODY> </BODY>See the background of this page.
continuation
Second paragraph, slightly more content here.
BRBreak or Line BreakPuts a single break in the middle of a paragraph,
list item, etc.
<P>First paragraph, <BR> no content.</P> First paragraph,
no content.
HRHorizontal RuleRuns a horizontal line across the page (or table
cell)SIZE
WIDTH
<HR SIZE="10" WIDTH="50%"> DIVDivisionDefines a particular section of the document. Used to spread
document attributes across a whole section.ALIGN
VALIGN, etc
<DIV ALIGN="RIGHT">
</DIV>