写了点html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>实验一-巩文彬</title>
<style type="text/css">
#header{
background-color: black;
color: white;
text-align: center;
padding:20px;
}
#nav {
line-height:30px;
background-color:#eeeeee;
height:300px;
width:100px;
float:left;
padding:5px;
}
#section {
width:350px;
float:left;
padding:10px;
}
#footer {
background-color:black;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
</head>
<body>
<div id="header">
<h1>编辑博客</h1>
</div>
<div id="nav">
<a href="">新博客</a><br>
<a href="">历史博客</a><br>
<a href="">回收站</a><br>
</div>
<div id="section">
<p>请输入内容</p>
</div>
</body>
</html>