This project is maintained by Duaa-tarazi
the syntax to create ordered lists in html:
<ol>
<li>first item</li>
<li>Second Item</li>
</ol>

the syntax to create unordered lists in html:
<ul>
<li>first item</li>
<li>Second Item</li>
</ul>

the syntax to create unordered lists in html:
<dl>
<dt>first item</dt>
<dd>the definition</dd>
<dt>Second Item</dt>
<dd>the second definition</dd>
</dl>
By default a box is sized just big
enough to hold its contents. To
set your own dimensions for a
box you can use the height and
width properties
HTML BOOK pp (303)
css syntax:
div.box{
height:300px;
width:300px;
}