Welcome to Dream.In.Code
Become an Expert!

Join 137,382 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 2,109 people online right now. Registration is fast and FREE... Join Now!




HTML home page design

 
Reply to this topicStart new topic

HTML home page design

naash
8 Oct, 2008 - 01:03 AM
Post #1

D.I.C Head
**

Joined: 25 Aug, 2007
Posts: 77


My Contributions
I am attaching 2 html docs - home & menu.


What I want is to have menu document on the left-mid of the home page.

That is whatever is in the menu.html shold be displayed in the left-mid of the home.html.

I don't know if I am making myself clear but if U could gather from what I have said please help me !!!
I am new to html !




Attached File(s)
Attached File  home.html ( 4.86k ) Number of downloads: 12
Attached File  menu.htm ( 950bytes ) Number of downloads: 9
User is offlineProfile CardPM
+Quote Post

pemcconnell
RE: HTML Home Page Design
8 Oct, 2008 - 05:05 AM
Post #2

D.I.C Regular
Group Icon

Joined: 5 Aug, 2008
Posts: 396



Thanked: 37 times
Dream Kudos: 75
My Contributions
You could use frames - but they are not recommended. I would have all your code in one page, and use something like this:

CODE

<html>
<head>
<title>my site</title>
<style>
#menu { width:20%; float:left; }
#content { width:80%; float:right; }
</style>
</head>
<body>
<div id="menu">
Put your menu code here
</div>
<div id="content">
Put your page content here
</div>
</body>
</html>


Or just to expand, if you wanted a header and footer:

CODE

<html>
<head>
<title>my site</title>
<style>
#header { width:100%; clear:both; height:160px; }
#menu { width:20%; float:left; }
#content { width:80%; float:right; }
#footer { width:100%; clear:both; height:60px; }
</style>
</head>
<body>
<div id="header">
this is my header
</div>
<div id="menu">
Put your menu code here
</div>
<div id="content">
Put your page content here
</div>
<div id="footer">
this is my footer
</div>
</body>
</html>


This post has been edited by pemcconnell: 8 Oct, 2008 - 05:07 AM
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/5/08 01:54AM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month