帮我用HTML+CSS设计一个学校官网的静态网页
时间: 2024-01-22 21:20:43 浏览: 92
静态网页设计HTML+CSS的学校论坛静态网页设计(期末大作业).zip
好的,以下是一个简单的学校官网静态网页的设计示例:
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>学校官网</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>学校名字</h1>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">新闻</a></li>
<li><a href="#">教育</a></li>
<li><a href="#">校园生活</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>欢迎来到我们的学校!</h1>
<p>我们的学校专注于提供高质量的教育,培养未来的领导者!</p>
</div>
</section>
<section id="news">
<div class="container">
<h2>最新新闻</h2>
<div class="news-item">
<h3>学校荣获国家级荣誉</h3>
<p>我们的学校最近被评为国家级示范学校,这是我们学校历史上的里程碑式事件!</p>
<a href="#" class="btn">了解更多</a>
</div>
<div class="news-item">
<h3>学校举行毕业典礼</h3>
<p>我们的学校最近为毕业生举行了盛大的毕业典礼,祝贺所有毕业生迈向新的阶段!</p>
<a href="#" class="btn">了解更多</a>
</div>
<div class="news-item">
<h3>新学期开学</h3>
<p>新学期即将开始,让我们一起期待新的挑战和机会!</p>
<a href="#" class="btn">了解更多</a>
</div>
</div>
</section>
<section id="education">
<div class="container">
<h2>我们的教育</h2>
<p>我们的学校一直致力于提供最好的教育,帮助学生获得成功。</p>
<ul>
<li><i class="fas fa-check"></i> 优秀的师资力量</li>
<li><i class="fas fa-check"></i> 先进的教学设施</li>
<li><i class="fas fa-check"></i> 多元化的课程</li>
<li><i class="fas fa-check"></i> 丰富的校园活动</li>
</ul>
</div>
</section>
<section id="campus-life">
<div class="container">
<h2>校园生活</h2>
<p>我们学校提供多种多样的校园活动,让学生充分发展自己的兴趣爱好。</p>
<div class="gallery">
<img src="img/gallery1.jpg">
<img src="img/gallery2.jpg">
<img src="img/gallery3.jpg">
<img src="img/gallery4.jpg">
<img src="img/gallery5.jpg">
<img src="img/gallery6.jpg">
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>联系我们</h2>
<form>
<label>姓名:</label>
<input type="text" name="name" required>
<label>邮箱:</label>
<input type="email" name="email" required>
<label>信息:</label>
<textarea name="message" required></textarea>
<input type="submit" value="发送">
</form>
</div>
</section>
<footer>
<div class="container">
<p>版权所有 © 学校名字 2021</p>
</div>
</footer>
</body>
</html>
```
CSS代码:
```
/* Reset styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* General styles */
body {
font-family: Arial, sans-serif;
line-height: 1.5;
background-color: #f4f4f4;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header styles */
header {
background-color: #333;
color: #fff;
padding: 20px 0;
}
header h1 {
font-size: 36px;
float: left;
}
nav {
float: right;
margin-top: 10px;
}
nav ul {
list-style: none;
}
nav li {
display: inline-block;
margin-left: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
/* Showcase styles */
#showcase {
background-image: url('../img/showcase.jpg');
background-size: cover;
background-position: center;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}
#showcase h1 {
font-size: 48px;
margin-bottom: 20px;
}
/* News styles */
#news {
background-color: #fff;
padding: 50px 0;
}
.news-item {
margin-bottom: 40px;
}
.news-item h3 {
font-size: 24px;
margin-bottom: 10px;
}
.news-item p {
font-size: 16px;
margin-bottom: 20px;
}
.btn {
display: inline-block;
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
text-decoration: none;
}
/* Education styles */
#education {
background-color: #f4f4f4;
padding: 50px 0;
}
#education h2 {
font-size: 36px;
margin-bottom: 20px;
}
#education p {
font-size: 18px;
margin-bottom: 20px;
}
#education ul {
margin-left: 40px;
}
#education li {
font-size: 16px;
margin-bottom: 10px;
}
#education i {
color: #333;
margin-right: 10px;
}
/* Campus life styles */
#campus-life {
background-color: #fff;
padding: 50px 0;
}
#campus-life h2 {
font-size: 36px;
margin-bottom: 20px;
}
#campus-life p {
font-size: 18px;
margin-bottom: 20px;
}
.gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
}
.gallery img {
width: 100%;
height: auto;
}
/* Contact styles */
#contact {
background-color: #f4f4f4;
padding: 50px 0;
}
#contact h2 {
font-size: 36px;
margin-bottom: 20px;
}
form label {
display: block;
font-size: 18px;
margin-bottom: 10px;
}
form input[type="text"],
form input[type="email"],
form textarea {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
}
form input[type="submit"] {
display: block;
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
}
/* Footer styles */
footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
footer p {
font-size: 16px;
}
```
你可以根据自己的需要进行修改。
阅读全文