Notebook 2


Next   Table of Contents   Previous

Notes:

• <ul> </ul> are used to make bulleted lists <li> </li> are placed around the words that are going to be listed. ul=unordered list li=listed item


ex.
<ul>
<li>Purple</li>
<li>Black</li>
<li>Blue</li>
</ul>


• Types of bullets can be changed:
•Ordered lists can also be made
My Favorite animals:<br>
<ol>
<il>Cats</il>
<il>Wolves</il>
<il>Elephants</il>
</ol>

  1. Cats
  2. Wolves
  3. Elephants

•Lists can be nested:
<ol>
<li>Pirates of the Caribbean: Dead Man's Chest</li>
<ul>
<li>Jack Sparrow one of my favorite fictional characters</li>
<li>Funny movie</li>
<li>Really good CGI</li>
</ul>
<li>Finding Nemo</li>
<li>Squirt</li>
<li>Pixar Movie</li>
<li>Computer Animated Movie</li>
</ul>
</ol>

My Favorite Movies

  1. Pirates of the Caribbean:Dead Man's Chest
  2. Finding Nemo

• Another type of list is a Definition List


<dl>
<dt>Term</dt>
<dd>Definition of the term</dd>
<dt> Another Term</dt>
<dd>Definition of the term</dd>
</dl>

Term
Definition of the term
Another term
Definition of the term

• To make a link <a href="http://vu.org">Virtual University Home</a>
Virtual University Home
•To link to another page on the same page <a href="index.html">Table of Contents</a>
Table of Contents


• <a name="top">at the top of the page and <a href="#top">textforlink</a> takes you to the top of the page Back to the Top
• ISOs allow characters which are part of HTML to show
Some ISOs:
Resources for special characters
•These can be used to comment on HTML it will not show up on the page <!--Comment here-->
• &nbsp; makes     multiple     spaces can be used to indent paragraphs

Next   Table of Contents   Previous

Back to the Top
Hosted by www.Geocities.ws

1