| Warning: include(http://www.studio6000.com/tutorside.htm) [function.include]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/studio60/public_html/html/lesson11.php on line 17 Warning: include() [function.include]: Failed opening 'http://www.studio6000.com/tutorside.htm' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/studio60/public_html/html/lesson11.php on line 17 |
ListsOrdered ListsYou can organize content of your site by using ordered and unordered lists. Here is an example of such lists. Ordered List
Unordered List
To create and ordered list first start with the ordered list tags. <body><ol> </ol></body> Then for each item on your list add the list item tags. <body><ol> <li></li></ol></body> Then insert the text of the item in between the opening and closing list tags. <body><ol> <li>This is item1</li></ol></body> To add another list item simply add another set of list item tags and the text to be listed. <body><ol> <li>This is item1</li> <li>This is item2</li> </ol></body> And the list will look like this:
To make an unordered list without the numbers use the unordered list tags instead of the ordered list tags.
<body><ul> And the list will look like this:
|