For a basic website structure:
<html>
<head>
<title>TITLE GOES HERE</title>
</head>
<body>
CONTENT HERE
</body>
</html>
Adding an Image (body section):
<img src="IMAGE URL" width="NUMBER OF WIDTH" height="NUMBER OF HEIGHT" alt="WORDS ON HOVER">
Background Color:
<body bgcolor="#000000">
To get a color, visit the Color Wheel.
Background Image:
<body background="filename.gif">
Text Links:
<a href="http://urladdress.com">address name</a>
Hyperlink Images:
<img src="filename.gif"><a href="http://addressurl.com" border="number" alt="text on hover">
Email Links:
<a href="mailto:email address">Your name</a>
Email Images:
<"a href="mailto:email address"><img src="filename.gif" width="number" height="number" alt="text on hover" border="0"></a>
Change Font Color
<font color="#000000">text here</font>
Change Font Size
<font size="number">text here</font>
FONT SIZE 1
FONT SIZE 2
FONT SIZE 3
FONT SIZE 4
FONT SIZE 5
Make Numbered Lists
<ol>
<li>bla bla
<li>bla bla
<li>bla bla
</ol>
Make Bulleted Lists
<ul>
<li>bla bla
<li>bla bla
<li>bla bla
</ul>
If you have additional features you would like added Pm me.