写一个网站主页响应式html+css
时间: 2024-03-21 08:41:57 浏览: 124
好的,以下是一个简单的响应式网站主页的HTML和CSS代码,希望能帮到你:
HTML代码:
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>响应式网站主页</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">主页</a></li>
<li><a href="#">关于我们</a></li>
<li><a href="#">服务</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>欢迎来到我们的网站!</h1>
<p>这里提供高质量的服务和产品,让您的生活更加便捷。</p>
<a href="#" class="btn">了解更多</a>
</section>
<section class="features">
<div class="feature">
<img src="img/feature-1.jpg" alt="feature-1">
<h2>服务一</h2>
<p>我们提供的服务一非常好用,可以帮助您轻松完成任务。</p>
</div>
<div class="feature">
<img src="img/feature-2.jpg" alt="feature-2">
<h2>服务二</h2>
<p>我们提供的服务二非常好用,可以帮助您轻松完成任务。</p>
</div>
<div class="feature">
<img src="img/feature-3.jpg" alt="feature-3">
<h2>服务三</h2>
<p>我们提供的服务三非常好用,可以帮助您轻松完成任务。</p>
</div>
</section>
<section class="cta">
<h2>现在就加入我们,享受更好的服务!</h2>
<a href="#" class="btn">立即注册</a>
</section>
</main>
<footer>
<p>版权所有 ©2021</p>
</footer>
</body>
</html>
```
CSS代码:
```
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
nav ul {
list-style: none;
display: flex;
justify-content: space-between;
}
nav li {
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
section.hero {
background-image: url(../img/hero.jpg);
background-size: cover;
background-position: center;
height: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
section.hero h1 {
font-size: 3em;
margin-bottom: 20px;
}
section.hero p {
font-size: 1.2em;
margin-bottom: 20px;
}
.btn {
background-color: #333;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #444;
}
section.features {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 50px;
}
section.features .feature {
width: 30%;
margin-bottom: 20px;
text-align: center;
}
section.features .feature img {
width: 100%;
margin-bottom: 20px;
}
section.features h2 {
font-size: 1.5em;
margin-bottom: 10px;
}
section.features p {
font-size: 1.2em;
margin-bottom: 20px;
}
section.cta {
background-color: #333;
color: #fff;
padding: 50px;
text-align: center;
}
section.cta h2 {
font-size: 2em;
margin-bottom: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
```
这些代码将创建一个基本的响应式网站主页,可以在不同的设备上自适应。在编写代码时,请注意使用媒体查询来设置不同的样式,以确保网站在各种设备上都能正常显示。
阅读全文