用HTML和CSS写一个关于环境保护的网站(附件图片)
时间: 2024-02-07 16:03:04 浏览: 92
好的,以下是一个关于环境保护的网站的HTML和CSS代码,同时包含一些图片和图片的CSS样式:
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>环境保护网站</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>环境保护网站</h1>
<nav>
<ul>
<li><a href="#about">关于我们</a></li>
<li><a href="#services">我们的服务</a></li>
<li><a href="#contact">联系我们</a></li>
</ul>
</nav>
</header>
<section id="banner">
<h2>为了地球的未来</h2>
<p>保护环境,从我做起</p>
</section>
<section id="about">
<h2>关于我们</h2>
<p>我们是一个致力于环境保护的组织,我们的目标是保护地球上的自然环境。我们的使命是提高公众对环境保护的意识,并为人们提供环境保护方面的知识和技能。</p>
<p>我们的团队由一群热爱自然、关心环境的专业人士组成。我们的服务包括环境咨询、环境评估、环境监测等。</p>
</section>
<section id="services">
<h2>我们的服务</h2>
<ul>
<li>环境咨询</li>
<li>环境评估</li>
<li>环境监测</li>
<li>环境培训</li>
</ul>
</section>
<section id="contact">
<h2>联系我们</h2>
<form>
<label for="name">姓名:</label>
<input type="text" id="name" name="name"><br>
<label for="email">电子邮件:</label>
<input type="email" id="email" name="email"><br>
<label for="message">留言:</label>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="发送">
</form>
</section>
<footer>
<p>版权所有 © 2021 环境保护网站</p>
</footer>
</body>
</html>
```
CSS代码:
```
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline-block;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
section {
padding: 50px;
}
section h2 {
font-size: 36px;
margin-bottom: 30px;
}
section p {
font-size: 18px;
line-height: 1.5;
}
ul {
list-style: disc;
margin-left: 20px;
}
form {
margin-top: 30px;
}
label {
display: inline-block;
margin-bottom: 10px;
}
input[type=text],
input[type=email],
textarea {
padding: 10px;
margin-bottom: 20px;
border: none;
width: 100%;
}
input[type=submit] {
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
#banner {
background-image: url('banner.jpg');
background-size: cover;
background-position: center;
height: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
text-align: center;
}
#banner h2 {
font-size: 48px;
margin-bottom: 20px;
}
#banner p {
font-size: 24px;
}
img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
```
其中,`banner.jpg`是一个图片文件,放在与HTML文件同级的文件夹里。
这个网站包括一个顶部导航栏、一个主页横幅、三个主要内容区域(关于我们、我们的服务、联系我们)和一个底部版权声明。网站中用到的图片通过CSS样式设置了大小和格式。
您可以根据自己的需求修改文本和图片等样式。
阅读全文