求基于HTML5的《网站首页框架搭建 》
发布网友
发布时间:2022-04-22 01:11
我来回答
共2个回答
热心网友
时间:2022-04-19 06:31
HTML CODE:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>HTML5示例</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header>
header 顶部区域
</header>
<nav>
<ul>
<li><a href="#">nav 菜单区域</a></li>
</ul>
</nav>
<section>
<aside>
aside 边栏区域
</aside>
<article>
article 区域
</article>
</section>
<footer>
footer 版权信息区域
</footer>
</body>
</html>
style.css:
header,nav,section,footer{width:1000px;margin:0 auto 10px auto; text-align:center;}
header{height:100px; background:#a5d3d5}
nav{ height:40px; background:#8ecaef}
nav li{list-style:none}
section{min-height:300px;}
aside{ float:left; min-height:300px;width:300px; background:#dcaace}
article{ float:right; min-height:300px;width:700px; background:#E6F2FF}
footer{ height:80px; background:#daebf5;}
热心网友
时间:2022-04-19 07:49