| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

Web10Lists

Page history last edited by c 14 years, 3 months ago

Lists - Web 1.0 Site

 

What am I going to learn to do?

On this page,you will learn how to add numbered and bulleted lists to a web page using HTML.

 

What software/tools will I use?

Notepad

Web Browser

 

What are the ideas I will work with?

 

You can make numbered lists and bulletted lists

You can organize and display information in a table.

This page has good information: http://w3schools.com/html/html_lists.asp

 

How do I do it?

Make a page in HTML with a Head, title and body inside the HTML tags.

In the title, put <title>Lists - First Name Last Initial</title>

On the first line of the Body, put <h1>Lists Page - First Name Last initial </h1>

 

Make a list using this code:

This will give you a bulleted list with three items.

<UL>

     <LI>This is the first item on the list</LI>

     <LI>This is the second item on the list</LI>

     <LI>The third item will be the last for now</LI>

</UL>

 

You can add items to the list by adding additiional LI's

You can make your list into a numbered list by using <OL> and </OL> instead of <UL> adn </UL>

 

Make an unordered list of your favorite musical artists.

Make an ordered list wtih your schedule so that the number matches up with the period number.

 

 

Checklist:

  • HTML page structure
  • Title with page name and your name (first name and last initial only )
  • Heading with page name and your name (first name and last initial only)
  • An unordered list of your favorite musical artists
  • An ordered list showing your schedule.

 

Comments (0)

You don't have permission to comment on this page.