|
||||||||||
![]() |
copyright © 2006 Don Southwell - All rights reserved |
![]() |
![]() |
![]() |
![]() |
|
||||||||||
![]() |
copyright © 2006 Don Southwell - All rights reserved |
![]() |
HTML BasicsGeneral Info:
Structure:<HTML><HEAD> <TITLE> </TITLE> </HEAD> <BODY> </BODY> </HTML> Structure notes: Notice the first tag is <HTML> and the last tag is </HTML>. Every HTML document must begin and end with those tags. The second tag is <HEAD>. This is where <TITLE> goes, in between <HEAD> and </HEAD>. Everything else goes between <BODY> and </BODY> Title<TITLE>...</TITLE> Place between <HEAD> and </HEAD>. This is displayed on the browser title barParagraphs and Line Breaks<P>...</P> Paragraph tag, </P> is optional. Inserts blank line.<BR> Line break (hard return). </BR> is optional. No blank line. Note: When text follows a heading, such as <H1>...</H1>, a blank line will follow it automatically. A paragraph or break tag isn't necessary. Horizontal Rule<HR> places a horizontal line on the page (no ending tag necessary)Formatting<B>Bold</B> Bold<I>Italics</I> Italics <U>Underline</U> Underline Headlines<H1>Headline 1</H1> (largest)Headline 1<H2>Headline 2</H2>Headline 2<H3>Headline 3</H3>Headline 3<H4>Headline 4</H4>Headline 4<H5>Headline 5</H5>Headline 5<H6>Headline 6</H6> (smallest)Headline 6Centering<CENTER>Centers text</CENTER>
Lists<UL>...</UL> Unordered List (bulleted) <LI> List Item. Used with <OL>
and <UL>
Ordered Lists<LI>First Item <LI>Second Item <LI>Third Item </OL> Ordered list as it is viewed in a browser
Unordered List<LI>An Item <LI>Another Item <LI>Yet Another Item </UL> Unordered list as it is viewed in a browser
|
! You are using a version 4 browser or older. If you are experiencing any problems with scrolling, please reload the page.