<HTML>
<HEAD>
<TITLE>HTML Text Basics - Example 1</TITLE>
</HEAD>

<BODY>
<H1>This is header one</H1>
<H2>This is header two</H2>
<H6>This is header six</H6>

This Section deals with special characters and entities<BR>
&lt; is the less then symbol and
&gt; is the greater then symbol<BR>
&#8364; is the euro sign<BR>
Most special characters like the ampersand can be printed by using a designated name
like &amp; or number like &#38;<P>

Some phrase elements are:<BR>
<EM>The &lt;EM&gt; &lt;/EM&gt; tag indicates emphasis.</EM>
<ABBR>The &lt;ABBR&gt; &lt;/ABBR&gt; tag indicates an abbreviation </ABBR><BR>
<CODE>The &lt;CODE&gt; &lt;/CODE&gt; tag designates a fragment of computer code.</CODE><BR>
<DFN>The &lt;DFN&gt; &lt;/DFN&gt; tag indicates that this is the defining instance of the enclosed term.</DFN><BR>
<CITE>The &lt;CITE&gt; &lt;/CITE&gt; tag is used to contains a citation or a reference to other sources.</CITE></P>

Then you have the basic physical / Character formatting tags:<BR>
The &lt;B&gt;&lt;/B&gt;<B> tags are used to bold text</B><BR>
&lt;I&gt;&lt;/I&gt;&lt;I&gt; tags are used to Italic text</I><BR>
&lt;U&gt;&lt;/U&gt;&lt;U&gt; tags are used to Underlined text</U><BR>
&lt;S&gt;&lt;/S&gt;&lt;S&gt; tags are used to Striked through text</S><BR>
&lt;SUB&gt;&lt;/SUB&gt; are used to place text below the line like <SUB>Subscript</SUB> text<BR>
&lt;SUP&gt;&lt;/SUP&gt; are used to place text above the line like <SUP>Superscript</SUP> text</P>

Then we have tags to change the font of text:<BR>
<FONT SIZE=1 COLOR="Red">This is font size one and font color red</FONT><BR>
<FONT SIZE=3 COLOR="Green">This is font size three and font color green</FONT><BR>
<FONT SIZE=5 COLOR="#0000FF">This is font size five and font color is blue</FONT><BR>
<FONT SIZE=-2>This is font size -2 ==> smaller text</FONT><BR>
<FONT SIZE=+2>This is font size +2 ==> big text</FONT><BR>
<BASEFONT SIZE=1>This is BASEFONT SIZE one<BR>
<BASEFONT SIZE=5>This is BASEFONT SIZE five<BR>
<BASEFONT SIZE=3>Making sure you reset the basefont back after your done is important.<BR>

<BR><BR>
<A HREF="tags2.html">previous slide</A> |
<A HREF="example1_src.html">next slide</A><BR>
<A HREF="agenda.html">Return to Beginning of Presentation</A><BR>
<A HREF="../index.html">Return to Software Development Library</A></P>
</BODY>
</HTML>


previous slide | next slide
Return to Beginning of Presentation
Return to Software Development Library