|
6. Lists People are usually in a hurry when using the Web. This behavior may be a carry over from when folks used to pay for the actual time spent on the Internet. Back in the olden days, say four years ago, users did not have the luxury of unlimited time on the Web. So they would quickly go online, get the information they needed and sign off. In this way, the user just paid for the little time used. Things are different today. Mostly everyone has unlimited time access to the Web, but the behavior hasnt changed much. People are still in a hurry, and they dont like to read a lot of text. So putting your information in the form of a list seems to help. Lists come in a variety of forms with most either numbered or bulleted. The numbered lists are called ordered lists and the bulleted lists are unordered lists. Lists are nested. There is a tag that identifies the type of list, like numbered or bulleted. Then within that tag there is another tag that itemizes the list. Maybe some definitions would help. <ol>
</ol> <ul>
</ul>
<li>
</li> Here is an example of the differences between ordered and unordered lists. An ordered (numbered) list goes like this: <ol>
In the browser it will appear like this:
An unordered (bulleted) list goes like this: <ul> In the
browser it will appear like this: Let's apply what we've learned Step 1 Load your text editor once more and open our current HTML document: firstpage.html. Step
2 Your file
should appear as below: <hr> Step 3. Let's add one of the lists noted above. Enter the tags and text that appear in red. <html> <hr> <p>I can also create lists using numbers and bullets. Here is an example of a list with numbers: <ol>
Step 4 Save your file. Step 5 If Netscape Navigator is still open, hit the reload button. If not, then load Navigator and follow the previous steps in Chapter 4. Here's your latest revision in your browser.
|