_theworks wrote:You could apply the CSS directly to the html elements like so:
<ul style="display:inline;">
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
Do NOT do this, unless there is a VERY good reason to do it.
- It is hard to change when you modify your styles
- It takes much more space (=downloadtime).
Use linked stylesheets preferably (The style will only need to be downloaded once for the site). Only if you deviate from the main stylesheet, consider using styes in the page head.
e.g.,
<head>
<link rel="stylesheet" type="text/css" href="http://www.bio-vision.nl/layout/screen.css" media="screen" />
<head>
<div id="nav">
<a class="menu0" href="http://www.domain.nl">home</a>
<a class="menu0" href="http://www.domain.nl/webdesign/index.php">About </a>
<a class="menu1" href="http://www.domain.nl/weblog/index.php">My Weblog</a>
</div>
Jelle.