![]() | ||||||||||||||||||||||||||||||
![]() ![]() |
The Basics To make a webpage one needs to know the basics. First off, you need to know that all HTML tags have a beginning tag and and end tag like this <Table> </Table> <font> </font> If you start a tag REMEMBER to end it. Ok now onto types of tags
Links This section deals with how to make links on pages. First off this is the easiest part in all of HTML To do a link make your code look like this <A HREF="http://www.any_site_you_want_to_link_to.com"> Any Site you want to link to</A> That code would look like this Images Let's work on images now. These are just as easy as links yet much more impressive.Try out this code <IMG SRC="http://www.angelfire.com/on2/reo/images/Pikachu.jpg" alt="Pika pika" width=100> This code ends up putting an image of your choice ( I chose a Pikachu) on your page. The width aspect is used to tell the browser how many pixels wide the image needs to be. You can designate height if you want to. If the image, for some reason, fails to load the Alt tag gives the surfer an Idea of what was supposed to be there, it can also be seen if the surfer puts their mouse on the image.This the image ![]() Tables Tables are one of the most important things in HTML. KEY TERMS: Cellpadding=the amount of room inside each cell of your table Cellspacing=This is the amount of open space left between cells of the table. Border=This is how much of a border you want. To do a table set up you code like this <TABLE cellpadding=1 cellspacing=1 border=1> < TR> <TD> A </TD> <TD> B </TD> </TR> < TR> <TD> C </TD> <TD> D </TD> </TR> </TABLE> The table looks like this once completed
Ok that wasn't so hard no to play with the table The <TD> tags are used to signify a cell of the table. If you look A is in its own cell. Lets say you wanted to change only A's cell's background color then do this (BTW #AAAAAA= Gray) <TD BGCOLOR="#AAAAAA" >A</TD> this code looks like this
Change the bgcolor of the cell to your tastes. Infact one can even change the entire row or even the table to a color of you coosing. Just add the bgcolor tags inside the appropriate <TR> or <TABLE> tags. Here take a look
Ok now you know about Tables. AN ADVANCED SECTION IS COMING SOON!!!!!!!!! so until then go to this HTML tag collection I found and use it till I make it so that you get more examples in action | |||||||||||||||||||||||||||||