| Crash guide to HTML. Lesson 10 - Playing with text |
Here's the code...
<form>
<input type="button" value=" Click here to go back " onClick="history.go(-1)">
</form>
What about lists?
- Circle list bullet
- Disc list bullet
- Square list bullet
- List item
- another item
- even more items
Here's the code...
<li type="circle"> Circle list bullet </li>
<li type="disc"> Disc list bullet </li>
<li type="square"> Square list bullet </li>
<ol> </li>
<li value="36">Blah </li>
<li>Blah </li>
<li>Blah </li>
</ol>
Above is an ordered list, starting at 36.
I'll go into far greater details for forms and lists if there's a call for it.
|