Section 10
SUMMARY OF HTML TAGS DESCRIBED SO FAR
Here is a summary of all the HTML Tags described so far:
<HTML>
<HEAD>
<TITLE>you would put a bookmark Title here</TITLE>
</HEAD>
<!--you should have only one Body tag, but I have 3 here to show options-->
<BODY>
<!--or add options to the Body tag as below-->
<BODY BACKGROUND="myfile.gif" BGCOLOR="BLACK" TEXT="WHITE" LINK="RED"
VLINK="BLUE">
<!--or add options to the Body tag using hex numbers for color as below-->
<BODY BGCOLOR="#000000" BACKGROUND="m45.jpg" BGPROPERTIES="fixed"
TEXT="#FFFFFF" LINK="#6699FF" VLINK="#6699FF">
<!--note BGPROPERTIES="fixed" only works for Internet Explorer-->
<!--also remember that hex colors use 2 digits each for Red, Green, Blue-->
<CENTER>
<!--I usually turn on Centering here, and leave on till the end of Body-->
<!--But, you can turn Centering on and off wherever you want to-->
<!--You would put the Text of your document here and any other embedded
HTML tags-->
<!--example of Line Break below-->
So now that we have a nice Background,<BR>and have all the Colors set,<BR>
let's move on to putting some text on the web page.
<!--example of Paragraph to add blank lines below-->
So now that we have a nice Background,<P>and have all the Colors set,<P>
let's move on to putting some text on the web page.
<!--example of Horizontal Rule with Percentage of screen width below-->
<HR WIDTH="50%">
<!--example of Horizontal Rule with Pixel width below-->
<HR WIDTH="80">
<!--example of Horizontal Rule with line Size in Pixels below-->
<HR SIZE="10">
<!--and remember to close the other HTML tags in reverse order as below-->
</CENTER>
</BODY>
</HTML>
[Previous Section]
[Table of Contents]
[Addendum]
[Milt's Micro Digest Home Page]
[Next Section]
The names Microsoft, Internet Explorer, Netscape, and others used in this document
are Trademarks, or Registered Trademarks of the companies represented.
E-mail questions, comments, or suggestions to: miltst@hotmail.com
© 1999 miltst@hotmail.com

(This page was last modified on: Monday, February 08, 1999)