|
Advanced HTML |
IntroductionThis site may be called the Advanced HTML site, but I have decided to include a small page with examples of simple HTML tags. The tags are grouped into related sections.Alligning Text<P ALIGN="left">Text to the left</P> <P ALIGN="center">Text in the middle</P> <CENTER>Text in the middle 2</CENTER> <P ALIGN="right">Text to the right</P> Text to the left Text in the middle Text to the right
Images<IMG SRC="bee.gif" ALT="Bee" WIDTH="173" HEIGHT="107">Here is a bumble bee inserted with above code.
Headings<H1>Big H1 Heading</H1> <H2>Big H2 Heading</H2> <H3>Medium H3 Heading</H3>The above code produces the below results. Big H1 HeadingBig H2 HeadingMedium H3 Heading
Line BreaksHere is a paragraph <P> And another one Here is a line of<BR> text with a break in the middleHere is a paragraph And another one Here is a line of
Horizontal Rules<HR> <HR WIDTH="60%"> <HR NOSHADE> You can produce a variety of horizontal rules very easily.
LinksLink to my <A HREF="index.html">HTML Site</A> main page.Link to my HTML Site main page. You may want to set a target for your links to set which window the links open in.
Copyright © 1997 - 2008 Hosted by 1&1
|