HTML
HTML means (Hyper Text Markup Language). HTML is used for making web site such as thins site. It works in a very simple way, all tags are put in a specific order to create a web site that links to other web pages. Each page has its own information on it and its own URL. I think that HTML is one of the easier languages to learn and use. You can write HTML with anything, you can use word, word pad, notepad,etc. All HTML files must start and end with
<html> and </html>. 
All HTML commands called tags Start with < & >. Some basic HTML commands are as follows;
Text size
<font size="?">Hello</font> hello
Example:
Hello hello

Text color
<font scolor="?">Hello</font>
Example:
Hello

Link
<a href="URL">text or image you want to put a link on</a>
Example:
Link
Image
<img src="URL" width="?" hiegth="?">
Example:

Inputs
Text
<input type="text" size="?">
Example:
Radio
<input type="radio" checked>

<input type="radio">
Example:

Check Box
<input type="checkbox" checked>

<input type="checkbox">
Example:

File
<input type="file">
Example:
Button
<input type="button" value="Name">
Example:

Tables
          <table width="?" hieght="?" border="?"">
               <tr>
                     <td width="?" hieght="?" bgcolor="?" align="right">
                            Text here1
                     </td>
                     <td width="?" hieght="?" bgcolor="?" align="center>
                            Text here2
                     </td>
                </tr>
               <tr>
                     <td width="?" hieght="?" bgcolor="?" valign="top">
                            Text here3
                     </td>
                     <td width="?" hieght="?" bgcolor="?" valign="middle>
                            Text here4
                     </td>
                </tr>

          </table>
Example:
Text here1 Text here1
Text here3 Text here4
Quiz | Hammond High School | Back Home Page | Mr. Jenkins Page