Well - to begin with the Web page should look like this in code: What I have in () is the explaination of the code - don't use in the page.
Any time you see
<html> (opens the type of code)
<head> (Tells the browers what to send out to search engines)
<Meta> key words about you page for search engines</META>
<title>New Page 1</title> (this is what is displayed at the top of the Browser)
</head> (ends this function)
<body> (lets the browser know that this is the info in the page)
(Here you can play with that tag) eg. <BG Color = "color name or Hex Code"> or <Body Background = "http://www.mydomain.com/image.jpg">
Here is a link for the hex coded -
http://www.htmlgoodies.com/colors.html<br>
Your information - text
Here you can play with other codes that, change Font size, color , Type set,bold, italics, underline, do all 3,. You can combine multiply code like this.
<font size="4">change Font size</font>
<font color = "green">color </font color>
<font face="Terminal"> Type set </font>
<B> Bold font </B>
<I> Italics </I>
<U> Underline </U>
<b><i><u>do all 3,</u></i></b>
<p> (paragraph break)
Here is how to insert a web page - My Favorite Website <a HREF = "http://www.myfavoritewebsite.com"> My Favorite Web Site</A>
The A means to anchor the site to the phrase "MY Favorite Website"
HREF stands for Hyperlink Reference. You close with meaning to end the Anchor.
Here's how to put a link to have people email you. Email Me!!! <a href = "mailto:youraddress.yourdomain.com">Email Me!!!</A>
NOTE: You can put anything you like between the Anchor Tags!
<p align = "right">This Right Aligns Text</P>
<p align = "justify> This justifies the text</P>
| Table Cell | Table Cell |
| Table Cell | Table Cell |
<table border="0" cellpadding="0"> (opens Table)
<tr> (Opens Row)
<td>Table Cell</td> (Opens Column) (/closes Column)
<td>Table Cell</td>
</tr> (closes row)
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
</table> {Closes Table)
Each TD is a Column
Each TR is a Row.
<ul> (Opens Unordered List)
<li> (opens List Item) Item 1</li>(closes List Item)
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul> (Closes Unordered List)
UL stands for "Unordered List. LI stands for List Item. Another type of List
Another type of List
<ol> (Opens Ordered List)
<li> (opens List Item) Item 1</li>(closes List Item)
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ol> (Closes Ordered List)