<font size="7" color="#FF0000"><b><marquee>JavaScript Failure... Reload.... "Cmd"+"R" Until you see the title in the status bar! Reload... Reload...</marquee></b></font>

ogeretla's
~     Simple     ~
H T M L
Home Page Building
For Webtvers


Basic HTML Table

Introduction to Codes



You will see these refered to as tags, codes or commands. They are three different names for the same thing. They are all contained within lesser than and greater than signs
< >
. They can be written in capital or lower case or a mixture of both. Everything between the signs are read the same by the viewing browser. Most all, except for a few, require an
and <<>/closing> command. All HTML Documents must begin with an
 and end with an 
 command with everything else 
going between them. This is a table of the most common you will 
see and use to begin with. It is just meant as a start to basic 
html to help you uderstand the more inclusive tables.



This is a line break command. It requires no closing tag. It is used at the end of every paragraph directly after the last period and tells the browser to put nothing else on this line from this point on. Used by it's self it creates one entire empty line space.

NOTE: In addition to using the line break at the end of every paragraph you should also get use to using it after ANYTHING that you don't want any thing else to appear on the rest of that line. For instance if you wanted an image centered and nothing else to appear to the right of it, it certainly couldn't hurt to give a browser specific instructions not to even try it. I will show you the example then won't use it any more in the tutorial but just get in the habit of using it freely when you want nothing else to appear any farther on the line you're putting something on.

<<>center><<>img src="URL"><<>/center><<>br>

<p></plaintext></center><br> This is a paragraph tag and causes one empty line space between paragraphs. It requires no closing tag. If you want more than one empty line space you must use multiple line break commands, like this:<br> <plaintext><br></plaintext><br> <plaintext><br></plaintext><br> <p> The line break and paragraph commands are used in tandem throughout your text pages. End of paragraph.<<>br><br> <<>p><br> Begining of next paragraph repeating Line Break at end.<br> <p> <center>Bold</center><br> <center><plaintext><b></plaintext><b>makes text bold</b><plaintext></b></plaintext></center><br> <p> <center>Strong<br> <<>strong><strong>Different Bold</strong><<>/strong></center><br> <p> <center>Italics</center><br> <center><plaintext><i></plaintext><i>makes text italicized</i><plaintext></i></plaintext></center><br> <p> When using more than one code the closing codes should be closed in reverse, like this:<br> <center><plaintext><b><i></plaintext><b><i>close tags in reverse</i></b><plaintext></i></b></plaintext></center><br> <p> <center>Underline</center><br> <center><plaintext><u></plaintext><u>uderlines text</u><plaintext></u></plaintext></center><br> <p> <center>Strike</center><br> <center><plaintext><s></plaintext><s>puts line through text</s><plaintext></s></plaintext></center><br> <p> <center>Typewriter</center><br> <center><plaintext><tt></plaintext><tt>makes typewriter text</tt><plaintext></tt></plaintext></center><br> <p> <center>Super Script<br> regular<<>sup><sup>Makes Text Super Script</sup><<>/sup>regular</center><br> <p> <center>Sub Script<br> regular <<>sub><sub>Makes Text Sub Script</sub><<>/sub>regular</center><br> <p> <center>Center</center><br> <p> <center><<>center>this is how you center<<>/center></center><br> <p> NOTE: Since the last webtv upgrade the center tags don't work in the webtv sig box anymore. Now you should use <plaintext><div align="center"></plaintext> then your text and/or images <plaintext></div></plaintext> to center in the webtv sig box. Center tags still work for web pages.<br> <p> <div align="center"><plaintext><div align="center"></plaintext>This centers too.<plaintext></div></plaintext></div><br> <p> <center>Font Size and Color Tags</center><br> <p> There are seven sizes of text 1-7. 3 is normal size. In tags the number should always be embedded between quotation marks. Webtv is very forgiving in bad html grammer and you will see many tutorials instructing you to make the next larger font size as <plaintext><font size=+1></plaintext>text here<plaintext></font></plaintext> that's ok for webtv but if you want all computer browsers to see it, it must be written correctly which is font size="4". It freaks some computer browsers out and they won't render it. This is how the font size tags look and what size they render. Notice there must be a space between font and size.<br> <p> <plaintext><font size="1"></plaintext><font size="1">very small text</font><plaintext></font></plaintext><br> <p> <plaintext><font size="2"></plaintext><font size="2">a little larger text</font><plaintext></font></plaintext><br> <p> <plaintext><font size="3"></plaintext>this is normal size text<plaintext></font></plaintext><br> <p> <plaintext><font size="4"></plaintext><font size="4">a little larger than normal</font><plaintext></font></plaintext><br> <p> <plaintext><font size="5"></plaintext><font size="5">large title size text</font><plaintext></font></plaintext><br> <p> <plaintext><font size="6"></plaintext><font size="6">this is really big</font><plaintext></font></plaintext><br> <p> <plaintext><font size="7"></plaintext><font size="7">as big as it gets</font><plaintext></font></plaintext><br> <p> You can change the color of text as well as the size with html. Using regular size text you would not have to use a size. Examples for changing colors. You should use Hex code numbers for the color. Those can be found under "Color Charts" on our <a href="linkpage.html">ogeretla's F-Key Saver Link Page</a> that accompanies this notebook. To keep it simple browsers do recognize basic colors written in text. Don't go overboard and try to use "Kathy's Easter dress pink." Also notice there must be a space between font size="4" and color="green".<br> <p> <plaintext><font color="blue"></plaintext><font color="blue">no size needed on regular size text</font><plaintext></font></plaintext><br> <p> <plaintext><font size="4" color="green"></plaintext><font size="4" color="green">yuk, what a color clash :-(</font><plaintext></font></plaintext><br> <p> You can also add effects to the font tags. These are webtv only.<br> <p> <<>font size="4" color="gold" effect="relief"><font size="4" color="gold" effect="relief">Text Goes Here</font><<>/font><br> <p> <<>font size="4" color="gold" effect="shadow"><font size="4" color="gold" effect="shadow">Text Goes Here</font><<>/font><br> <p> <<>font size="4" color="gold" effect="emboss"><font size="4" color="gold" effect="emboss">Text Goes Here</font><<>/font><br> <p> And you can mix and match text and font tags to:<br> <p> <<>font size="4" color="gold" effect="emboss"><<>b><<>i><<>u><b><i><u><font size="4" color="gold" effect="emboss">Text Goes Here</font></u></i></b><<>/u><<>/i><<>/b><<>/font><br> <a name="heading"> <h4 align="center">Heading Tags</h4> Heading tags are designed to go in the body portion and are quicker and easier to write than font tags. They are quite similar to font tags and range in size 1-6 with 1 being the largest and 6 being the smallest. They align left, right or center and automaticly create an empty line space above and below each one.<br> Also this is an exception where we don't use a line break command after the code because the heading tag automaticly creates an empty line space above and below it and if we add the <<>br> it would give two empty line spaces below it.<br> <p> <h1><<>h1>Size 1<<>/h1></h1> <h2><<>h2>Size 2<<>/h2></h2> <h3><<>h3>Size 3<<>/h3></h3> <h4><<>h4>Size 4<<>/h4></h4> <h5><<>h5>Size 5<<>/h5></h5> <h6><<>h6>Size 6<<>/h6></h6> <p> You can also, like fonts, add other effects with tags.<br> <<>font color="blue"><<>b><<>i><<>u><<>h4 align="center">Heading Tag<<>/h4><<>/u><<>/i><<>/b><<>/font><br> Would give you this:<br> <font color="blue"><b><i><u><h4 align="center">Heading Tag</h4></u></i></b></font><br> <p> <center>Anchor Tag<br>(Clickable Link)</center><br> <p> This makes the highlighted text that you click on that takes you to another page. The a stands for anchor and the (h)ref stands for reference. There must be a space between the a and href and leaving a single quote out will make it not work. To demonstrate how it works click on the text and it will take you to the first page of the notebook, hit your "Back" key to return to this page. URL means Uniform Resource Locater and is merely another way of saying "Address" (Addy) and works like the address of your house telling the browser what page address to take you to.<br> <p> <<>a href="URL"><a href="notebook.html">First Page of Notebook</a><<>/a><br> <p> <center>Image</center><br> <p> img src stand for image source. For just basic putting an image on a page or in a sig box the first code will do. When you have learned to use web tools you really should size your images to make your sig and web page load faster. The second code shows how to write that. You can also place the image with the align command (watch for spaces). If you don't put an align command the image defaults to the left margin. There's detailed instructions on page five as to resize an image to any size you want by using html code. Images are either gif or jpg (sometime written as jpeg) format. This image gives permission to link to or transload to your own files. The address of this image (gif) is:<br> http://homepages.infoseek.com/homepages/s/w/e/swe3/exclame.gif<br> <p> <<>img src="imageURL"><img src="img/exclamation.gif" height="24" width="24"><br> <br> <<>img src="URL" height="24" width="24"><br> <br> <img src="img/exclamation.gif" height="24" width="24"><<>img src="URL"><br> <br> <<>img src="URL" align="center"><img src="img/exclamation.gif" height="24" width="24" align="center"><br> <br> <<>img src="URL" align="right"><img src="img/exclamation.gif" height="24" width="24" align="right"><br> <br> <br> <center>Sound</center><br> <p> This is the code for putting sound on your page or in your sig box. A full tutorial on many options dealing with your sound can be found on page four of the Notebook.<br> <p> <<>bgsound src="URLofsound"> No closing tag needed.<br> <p> <center><font size="4"><b><i>Embed</i></b></font></center><br> <p> With embed tags you can embed sound, image or an entire web page. Embed tags require an opening and closing tag back to back with no space between them. <<>embed><<>/embed> When you embed sound it shows a small speaker. Computers can not see them as this is a webtv only thing. Here's an example for embedding sound:<br> <p> <b><i>Embed Sound</i></b><br> <p> <<>embed src="URL-of-sound"><<>/embed><br> <p> The above example gives you this: <p>