Definition
Lists
Definition Lists
In Beginning HTML you learned how to create two types of lists:
ordered <ol>…</ol> and unordered <ul>...</ul>
lists. These lists use bullets or numbers to mark entries. The definition
list marks its entries by a pattern of indentation. This is especially handy when creating
a glossary, bibliography or any list of items with indented sections.
<dl>
<dt> title1
<dd> definition1
<dt> title2
<dd> definition2
<dt> title2
<dd> definition2
</dl>
Step One:
Open yourlastname.htm
Step Two:
Type in the following code:
<dt><h3>skills</h3>
<dd>Internet
<ul>
<li>HTML
<li>Dreamweaver
</ul >
<dd>Operating Systems
<ul>
<li> Microsoft Windows
<li> Macintosh OS
</ul>
<dd>Databases
<ul>
<li>Filemaker Pro
<li>Access
</u>
</d>
Step Two:
Save and load into your Web browser.

|