Here are a few basic HTML commands to help you as you are creating custom pages.
<a href="http://ask.com/">Example Link</a>
Example Link
You must use a fully qualified URL, for example: http://diosav.org/ or http://www.diosav.org/
<a href="mailto:Jane@doe.com">Jane@doe.com</a>
<img src="" alt="" />
<center>something</center>
<center><a href="linked path"><img src="image path" alt="" /></a></center>
<strong>this is bold</strong>
<em>this is italic</em>
In order to make a list you simply need to do the following:
<ul>
<li>thing 1</li>
<li>thing 2</li>
<li>thing 3</li>
</ul>
It should look like this when you are done:
To make this a ordered(numbered) list simply use: <ol> </ol>