<!DOCTYPE html>
<html>
<title class="t1">标题</title>
<link rel="stylesheet" href="css/style.css">
<header class="header">
<p>这是我的第一个网页</p>
</header>
<nav class="nav">
<ul>
<li>首页</li>
<li>栏目介绍</li>
<li>联系方式</li>
<li>截至日期</li>
</ul>
</nav>
<article class="article">
<div class="left">
<h1>left</h1>
</div>
<div class="right">
<h2>right</h2>
</div>
</article>
<footer class="footer">
<a href="#">链接地址</a>
</footer>
<html>
body{
position:relatice;
margin:0;
}
.t1{
font-size:4em;
color:#ccc;
width:800px;
align:center;
height:20px;
background-color:#00FFFF;
}
.header p{
font-size:2em;
color:#999;
text-align:center;
}
.nav{
background-color:#FFFF00;
position:absolute;
margin-top:20px;
width:100%;
height:40px;
border-radius: 10px;
}
.nav ul li{
float:left;
margin-right:25px;
}
.article{
position:relative;
height:300px;
width:100%;
margin-top:95px;
}
.left{
position:absolute;
float:left;
background-color:#D9D9D9;
height:300px;
width:30%;
margin-left:30px;
}
.right{
position:absolute;
margin-left:280px;
background-color:#E6E6E6;
height:300px;
width:70%;
}
.footer{
height:30px;
margin-top:90px;
width:100%;
border-radius:10px;
background-color:#05D900;
}