Acme Web Design Info Logo Everything your mother didn't teach you about the web Hand pulling Acme Web Design package
moneygram ulm money gram bank moneygram in hamburg money gram transfer moneygram exchange rate moneygram contact how to send money gram moneygram express moneygram bielefeld moneygram bordeaux moneygram agent locations how to do a money gram moneygram melbourne moneygram prices moneygram france sa money grams locations moneygram poste italiane moneygram post office moneygram exchange rates postepay moneygram rewards sending moneygram online moneygram wien money gram express send money online moneygram intercambio moneygram money gram bank moneygram currency exchange rate moneygram marrakech moneygram.de oficinas moneygram tarif moneygram change center moneygram where can i get a money gram moneygram bank online medicine without prescription cheap drugs online buy medications online prescription buying online drugs drugs store buy antibiotics online buying antibiotics online Buy Cipro Online without prescription antibiotics online buy antibiotics Buy Cipro Online buy antibiotics without prescription buy antibiotics online no prescription buy doxycycline online Buy Cipro

Acme Web Design Info

Build Your First Web Page with HTML

Super Lists!

There are several agencies in the world whose sole occupation is to understand how people use the web. One important discovery they have made is that people tend to read slower and less on a web page than they would typically read on a printed page. Knowing this gives you an advantage in how you design your web page. You probably want to avoid huge long blurbs of text and instead break in down into smaller, digestible chunks. One technique for doing this is using lists.

Code for a list looks like this:

<ul>
  <li>This is list item 1</li>
  <li>This is list item 2</li>
  <li>This is list item 3</li>
</ul>

and the result looks like this:

  • This is list item 1
  • This is list item 2
  • This is list item 3

You can also create automatically numbered list by using slightly different code:

<ol>
  <li>This is list item 1</li>
  <li>This is list item 2</li>
  <li>This is list item 3</li>
</ol>

the result of which looks like this:

  1. This is list item 1
  2. This is list item 2
  3. This is list item 3

You can kind of see how the list code works by looking at the examples above. The <ul> tag tells the browser to start an unordered list, and the </ul> tag tells it to end the list. In between these two tags, the <li> tag tells the browser to add a list item, and the </li> tags tells it to end the item.

The <ol> and </ol> tags create an ordered list, which means they are numbered instead of bulleted.

To test out lists, copy the code below and paste it into your "hello.html" file between the <body> and </body> tags. Save the file and then open it in your browser by double-clicking.

Excellent! Now you know how to use some of the most fundamental tags of HTML. There is one more subject to cover before we put it all together, and that is how to construct a table in HTML.




<< BACK NEXT: Tables NEXT >>
BACK: Headings and Paragraphs


Link to this page and help others find this stuff!

Copy and paste this code:

Friendly Linking