Listing Style 1
Simple List Style
Simple list style is the simplest method of listing items. It only use HTML code and do not use any CSS styling. You may use any web editor application (we recommend Dreamweaver).
Example:
HTML
<div id=”navcontainer”>
<ul id=”navlist”>
<li id=”active”><a href=”#” id=”current”>Item one</a></li>
<li><a href=”#”>Item two</a></li>
<li><a href=”#”>Item three</a></li>
<li><a href=”#”>Item four</a></li>
<li><a href=”#”>Item five</a></li>
</ul>
</div>
CSS
none
Instructions:
Copy and paste the HTML codes above into web editor application and save it as any name.
Output:
Popularity: 20% [?]
| 2.5 |








