This is what a webshell looks like.

This is what a dialog box looks like.

Here is a link to a web page with alot of html tags.

Text affects
Affects Code Code Used What it does
Bold B <b>Bold</b> Bold
Italic I <i>Italic</i> Italic
Typewriter TT <TT>Typewriter</TT> Typewriter

This is my first HTML page!

I can write in Italic or Bold


Or I can write in both

...and that's all
Site hosted by Angelfire.com: Build your free website today!
Single Tags
Tags What it does
<HR> This command gives you a line across the page. (HR stands for Horizontal Reference.) The line right above the words "Single tags" was made using an <HR> tag.
<BR> This BReaks the text and starts it again on the next line. Remember you saved your document as TEXT so where you hit ENTER to jump to the next line was not saved. In an HTML document, you need to denote where you want every carriage return with a <BR>.
<P> This stands for Paragraph. It does the exact same thing as the <BR> above except this tag skips a line. BR just jumps to the next line, P skips a line before starting the text again.