Notes
Outline
Intro to Basic HTML
HyperText Markup Language
One Constant HTML Element
They exist inside carets, also known as wakas
One Near Constant HTML Element
They travel in pairs like bookends
     EX:  <HTML>
           <TITLE> </TITLE>
           <BODY> </BODY>
                        </HTML>
Some Common Fields
Boldface
<B>  </B>
Italics
<I>  </I>
Underline
<U>  </U>
Paragraph Break
<P>  </P>
More Common Fields
Changing Font Size
<BIG>Word </BIG>
<BIG><BIG>Word</BIG></BIG>
<BIG><BIG><BIG>Word</BIG></BIG></BIG>
More Common Fields
Changing Font Color
<FONT COLOR=“#FF0000”>
red</FONT>
More Common Fields
Show a picture
<IMG SRC="picture.gif">
More Common Fields
More Common Fields
Creating a hyperlink
<A  HREF=
“http://www.thornton.com/”>
Visit us</A>
More Common Fields
Creating an email link
<A HREF=
"mailto:me@mymail.com”>
email me</A>
More Common Fields
Two STAND ALONE codes
<BR> Line Break
<HR> Horizontal Rule Line
More Common Fields
Creating a bulleted list
<UL>
<LI> Item one</LI>
<LI> Item two</LI>
<LI> Item three</LI>
</UL>
Last one...
Numbered Lists
<OL>
<LI>Item one</LI>
<LI>Item two</LI>
<LI>Item three</LI>
</OL>
Now Let’s Put It All Together
A typical Web page (1 of 3)
Typical page (2 of 3)
Typical page concluded
Here’s the finished page
shown in two slides
Finished Product...
Finished product concluded
Slide 22