Figure 4. A simple web page consists of different headings.
k. < ul >
Another way to present your list is unordered. The tag used is < ul >. Just like the ordered list, it needs to use list item tags as well. Let's write a new document called lists.html. We can understand it much better by seeing the result on the screen.
< html >
< body >
< br >< br >< br >
< ol > Ordered List
< li > cats
< li > dogs
< li > sheeps
< li > computers?
< /ol >
< hr >
< br >< br >< br >
< ul > Unordered List
< li >dating < /li >
< li > love< /li >
< li > marriage < /li >
< li > hell?< /li >
< /ul >
< hr >
< /body >
< /html >
After opening the HTML file on the web browser. We should see
Figure 5.
[ main page
]