Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

creating page with menu

1 view
Skip to first unread message

navin

unread,
Jun 10, 2007, 2:53:09 PM6/10/07
to
Hi All

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

Adrienne Boswell

unread,
Jun 14, 2007, 4:24:00 AM6/14/07
to
Gazing into my crystal ball I observed navin <navin.n...@gmail.com>
writing in news:1181501589.9...@i13g2000prf.googlegroups.com:

<!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

0 new messages