I am new to this web design. i saw a tutorial for creating vertical
menus using CSS, which works fine. However, i am still not able to
undrstand as how to integrate this menu with the other contents of the
web page.
I want the menu created with CSS on the left and the content of the
home page on the right.
Please tell me how to do this.
Thanks for the help,
Navin
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>Your web page</title>
<style type="tex/css">
#nav {width:20%; float:left}
#content {width:70%; margin-left:2%}
</style>
</head>
<body>
<div id="nav">
<ul>
<li><a href="page.html">Page</a></li>
<li><a href="page2.html">Page 2</a></li>
</ul>
</div>
<div id="content">
<h1>My page</h1>
<p>Here is some content.</p>
</div>
</body>
</html>
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share