Unordered List
<ul> <li>This is the first list item in an unordered list. <li>This is the second list item in an unordered list. <li>And this here is the third item. </ul>
  • This is the first list item in an unordered list.
  • This is the second list item in an unordered list.
  • And this here is the third item.
Ordered List
<ol> <li>This is the first list item in an ordered list. <li>This is the second list item in an ordered list. <li>And this here is the third item. </ol>
  1. This is the first list item in an ordered list.
  2. This is the second list item in an ordered list.
  3. And this here is the third item.
Menu
<menu> <li>This is the first item on the menu. <li>This is the second item on the menu. <li>And this here is the third item. </menu>
  • This is the first item on the menu.
  • This is the second iten on the menu.
  • And this here is the third item.
  • Directory
    <dir> <li>This is the first item. <li>This is the second item. <li>And this here is the third item. </dir>
  • This is the first item.
  • This is the second iten.
  • And this here is the third item.
  • Definition List
    <dl> <dt>Chair <dd>A piece of furniture often found with four legs and a high back, which people sit on. <dt>Table <dd>A table is another piece of furniture, also with four legs, but with no back </dl>
    Chair
    A piece of furniture often found with four legs and a high back, which people sit on.
    Table
    A table is another piece of furniture, also with four legs, but with no back
    Form Example
    <form action="dummy.html" method=get> <input name=first type=text value="Default"><br> Password: <input name=second type=password size=8 maxlength=8><br> <input name=third type=checkbox checked>Checkbox<br> <input name=fourth type=radio>Radio<br> <hr> <textarea rows=2 cols=16> This is the default text. </textarea> <hr> <select size=2 multiple> <option>First <option>Second <option>Third </select> <hr> <input value="Send" type=submit> <input type=reset><br> </form>

    Password:
    Checkbox
    Radio




    Table
    <table border=3 width=100%> <tr> <th>Left</th> <th>Right</th> </tr> <tr> <td>Left Data</td> <td>Right Data</td> </tr> </table>
    Left Right
    Left Data Right Data
    Client Side Image Map
    <map name="map"> <area shape=rect coords="4,5,86,113" href=cheat.html> <area shape=rect coords="45,45,149,173" href=cheat.html> </map> <img usemap="#map" src="map.gif">