谁会html语言,帮我写一个简单网页的代码框架。 急需!!!

要有背景,banner 水平线 表格 图片

<html>

<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<title>新建网页</title>
</head>
<frameset rows="64,*">
<frame name="banner" scrolling="no" noresize target="contents" src="Sample_top.htm">
<frameset cols="150,*">
<frame name="contents" target="main" src="Sample_left.htm">
<frame name="main" src="Sample_right.htm">
</frameset>

<noframes>
<body>

<p>此网页使用了框架。</p>

</body>
</noframes>
</frameset>

</html>
温馨提示:答案为网友推荐,仅供参考
第1个回答  2011-04-05
<html>
<head>
<style type="text/css">
body{background:url(这里是网页背景图片);}
#d{width:100%;text-align:center;}
#dd{width:940px;height:60px;background:white;}
#d-h{width:940px;height:240px;background:black;}
#d-b{width:940px;height:1000px;background:white;}
#d-a{float:left;width:740px;height:1000px;}
#d-a-a{float:right;width:200px;height:350px;padding:10px 10px 0px 0px;}
</style>
</head>
<body>
<div id="d">
<div id="dd"><!--这里是头顶上空白处-->
</div>
<div id="d-h"><!--这里可以算是头部-->
</div>
<div id="d-b">
<div id="d-a"><!--这里是主体左边一部分--></div>
<div id="d-a-a"><!--这里是主体右边一部分-->
</div>
</div>
</body>
</html>本回答被提问者采纳
相似回答