<html> <head><title> Html Help</title> <META NAME="DESCRIPTION" CONTENT="This is where you put a short description about your web site, no more than 25 words. "> <META NAME="KEYWORDS" CONTENT="Here you use Keywords to describe your web site. You can use around 300 words or key phrase’s, do not repeat any word or phrases more than twice."> </head> <body bgcolor="#000000" text="#FFFFFF" link="#FF0000" vlink="#C0C0C0" alink="#0000FF"> <center><b><font size="6 ">How To Create HTML Documents</font></b><br> (Hypertext Markup Language) <br> <br> <br> <font size="4 ">Page 1</font></center> <hr width="50%"> <br> <br> <center>Take a look at how this web page looks<br> <a href="index.htm">Click Here</a></center> <br> <br> To create a html document you can use an ordinary text program such as word pad, but to make things easier I would suggest a program such as Flexed Ed. <br> Flexed is a program specifically designed to create html documents.<br> <br> <b><u>This is how your document should always begin</u></b> <br> <br> &lt;!doctype html public "-//ietf//dtd html//en//3.0"&gt;<br> &lt;html&gt;<br> &lt;head&gt;&lt;title&gt; My Home Page &lt;/title&gt;<br> &lt;META NAME="DESCRIPTION" CONTENT="This is where you put a short description about your web site, no more than 25 words. "&gt;<br> &lt;META NAME="KEYWORDS" CONTENT="Here you use Keywords to describe your web site. You can use around 300 words or key phrase’s, do not repeat any word or phrases more that twice."&gt; &lt;/head&gt;<br> &lt;body&gt; <br> <br> <center><font color="#00FFFF">This part is called the body.<br> Everything you want people to see will go here.</font><br></center> <br> <br> When you've finished, you should end the document with these tags.<br> <br> &lt;/body&gt;<br> &lt;/html&gt; <br> <br> <hr> <br> <center><b><u>Html Tags</u></b> <br></center> <br> &lt;br&gt; Is The Line Break element which specifies that a new line must be started at the given point. <br> <br> <i><u>Here is an example:</u></i> <br> One line starts here.&lt;br&gt;<br> I want another here.&lt;br&gt;<br> And another here.&lt;br&gt;<br> One more here.&lt;br&gt;<br> <br> <u><i>It will appear like this:</i></u><br> One line starts here. <br> I want another here. <br> And another here. <br> One more here. <br> <br> <br> <hr> &lt;b&gt;...&lt;/b&gt; Is the Bold element which specifies that the text should be rendered in boldface, where wanted. <br> <br> <i><u>Here is an example:</u></i><br> My name is Paul Stevens and I am &lt;b&gt;single&lt;/b&gt;<br> <br> <u><i>It will appear like this:</i></u><br> My name is Paul Stevens and I am <b>single</b> <br> <br> <hr> The &lt;u&gt; ... &lt;/u&gt; Elements state that the enclosed text should be rendered, underlined. <br> <br> <i><u>Here is an example:</u></i><br> This text is &lt;u&gt;underlined&lt;/u&gt;<br> <br> <u><i>It will appear like this:</i></u><br> This text is <u>underlined</u> <br> <br> <hr> &lt;i&gt;...&lt;/i&gt;The Italic element specifies that the text should be rendered in italic font. <br> <br> <i><u>Here is an example:</u></i><br> This text is &lt;i&gt;italic&lt;/i&gt; <br> <br> <u><i>It will appear like this:</i></u><br> This text is <i>italic</i> <br> <br> <hr> &lt;sup&gt;...&lt;/sup&gt;Is the element which specifies that the enclosed text should be displayed as a superscript, and using a smaller font (compared with normal text). <br> <br> <i><u>Here is an example:</u></i><br> Ronald M&lt;sup&gt;c&lt;/sup&gt;Donald <br> <br> <u><i>It will appear like this:</i></u><br> Ronald M<sup>c</sup>Donald <br> <br> <hr> &lt;sub&gt;...&lt;/sub&gt; Is the element which specifies that the enclosed text should be displayed as a subscript, and using a smaller font (compared with normal text). <br> <br> <i><u>Here is an example:</u></i><br> H&lt;sub&gt;2&lt;/sub&gt;0 <br> <br> <u><i>It will appear like this:</i></u><br> H<sub>2</sub>0 <br> <br> <hr> &lt;center&gt;...&lt;/center&gt; Is the center element and all lines of text between the beginning and end elements are centred between the current left and right margins. <br> <br> <i><u>Here is an example:</u></i><br> &lt;center&gt;I want this text to be aligned to the center of the page.&lt;/center&gt; <br> <br> <u><i>It will appear like this:</i></u><br><br> <center>I want this text to be aligned to the center of the page.</center> <br> <br> <hr> Text left alone (no tags) will automatically default to the left hand side of the document just like this. <br> <br> <hr> &lt;p align=right&gt;&lt;/p&gt;All text within the paragraph will be aligned to the right side of the page layout. <br> <br> <i><u>Here is an example:</u></i><br> &lt;p align=right&gt;I would like this text aligned to the right&lt;/p&gt; <br> <br> <u><i>It will appear like this:</i></u><br> <p align=right>I would like this text aligned to the right</p> <br> <br> This also works with the center and left command as well. <br> <br> <hr> &lt;blink&gt;...&lt;/blink&gt; Surrounding any text with this element will cause the selected text to blink on the viewing page. This can serve to add extra emphasis to selected text. (Netscape Only) <br> <br> <i><u>Here is an example:</u></i><br> I want this text to &lt;blink&gt;blink&lt;/blink&gt; <br> <br> <u><i>It will appear like this:</i></u> (You won't see it because it's only for Netscape) <br> I want this text to <blink>blink</blink> <br> <br> If you were using Netscape you would see this: (I made an animated gif so you could see how it works) <br> I want this text to <img src="blink.gif" width="28" height="10" border="0"> <br> <br> <hr> &lt;big&gt;...&lt;/big&gt;Is the element which specifies that the enclosed text should be displayed using a big font (compared with the current font). <br> <br> <i><u>Here is an example:</u></i><br> I want this text to be &lt;big&gt;larger&lt;/big&gt; than the rest. <br> <br> <u><i>It will appear like this:</i></u><br> I want this text to be <big>larger</big> than the rest. <br> <br> <hr> &lt;img&gt;The Image element is used to incorporate in-line graphics into an HTML document. <br> <br> <i><u>Here is an example:</u></i><br> &lt;img src="photo.jpg" width="187" height="231" border="0"&gt; <br> <br> <u><i>It will appear like this:</i></u><br> <br> <img src="photo.jpg" width="187" height="231" border="0"> <br> <br> <u><i>Example 2</i></u><br> &lt;center&gt;&lt;img src="photo.jpg" width="187" height="231" border="0"&gt;&lt;/center&gt; <br> <br> <u><i>It will appear like this:</i></u><br><br> <center><img src="photo.jpg" width="187" height="231" border="0"></center> <br> <br> <u><i>Example 3</i></u><br> &lt;img src="photo.jpg" align="right" width="187" height="231" border="0"&gt; <br> <br> <u><i>It will appear like this:</i></u><br><br> <img src="photo.jpg" align="right" width="187" height="231" border="0"> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <hr> <center><a href="html-help2.htm"><font size="6">Next</font></a>&#160; &#160; &#160; &#160;<a href="../main.htm"><font size="6">Return to Main page</font></a></center> <br> <br> <br> </body> </html>