4 回答
TA贡献1852条经验 获得超7个赞
<html>
<head>
<title>网页设计与网站建设课程网站</title>
<meta http-equiv="keywords" content="网页设计,网站建设,课程信息">
<meta http-equiv="description" content="网页设计与网站建设课程网站">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
body {
background-color: #660000;
color:#FFF;
}
div.container {
padding:50px 70px 20px 10px;
}
span.title {
font-weight:bold;
}
</style>
</head>
<body>
<div class="container">
<div>
<span class="title">
网页设计与网站建设课程网站
</span>
</div>
<div class="content">
<p>
网页设计
</p>
<p>
网站建设
</p>
<p>
课程信息
</p>
</div>
<div>
</body>
</html>
TA贡献1804条经验 获得超8个赞
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.notice{
width: 300px;
margin: 0 auto;
border: 3px solid #666;
background: blue;
color: white;
}
.notice h1{font-size: 30px; text-align: center; padding-bottom: 30px;}
.notice a{color: white; text-decoration: none;}
</style>
</head>
<body>
<div class="notice">
<h1>通知</h1>
<ul>
<li>
<a href="#">通知1</a>
</li>
<li>
<a href="#">通知2</a>
</li>
<li>
<a href="#">通知3</a>
</li>
<li>
<a href="#">通知4</a>
</li>
</ul>
</div>
</body>
</html>
添加回答
举报