<em> - italic
<strong> - bold
<h1> - headings
<p> - paragraph
<br /> - space
<table border="1"width="500"cellpadding="10"cellspacing="10"> (can use percentage
for width)(pads in cell)(space between cell)
<tr>
<th></th> (table header) or <th colspan="2"> (this occupy 2 column)
<td></td> (column)
<td></td> (column)
<td></td> (column)
</tr>
<tr>(row)
<td></td> (column)
<td></td> (column)
<td></td> (column)
</tr>
</table>
<ul>
<li>New sunglasses</li> (bullet point items for UL)
<li>Computer</li>
</ul>
<ol>
<li>spiderman</li> (numeric items for OL)
<li>spiderman homecoming</li>
</ol>
<a href="[Link] - link
<a href="[Link] title="facebook sucks">Facebook</a> (LINK TIP)
<a href="#gender">Gender Section</a>
<a name="gender"> - destination target (NAVIGATION ON WEBSITE-put on
paragraph)
<img src="[Link]" height="150"/> (add image-height)
<!-- --> - comments(only you can see)
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
-
ALL INSIDE HEAD
<head>
<style type="text/css"> (RGB Values-find color codes-)
h1 {color:blue;font-family:arial;} (p/h1 is the "element", the color/font
is the "property", blue is the "value")
p {line-height:150%;} (the space between paragraphs)
ul {font-weight:bold;font-style:italic;} (bold fonts)
h3 {text-align:center;} (center the words to middle)
p {text-indent:5%;} (first tab for starting essay)
body {background-color:blue;color:white} (make whole background dif color)
</style>
</head>