将上述的css和html整合成一份完整的代码
时间: 2024-03-14 08:44:21 浏览: 138
纯CSS3制作中国联通logo图标样式.zip
以下是整合后的完整代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
h1 {
margin: 0;
font-size: 36px;
}
nav {
background-color: #666;
color: #fff;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px;
font-weight: bold;
}
nav a:hover {
background-color: #fff;
color: #666;
}
section {
padding: 20px;
margin: 20px;
background-color: #fff;
border: 1px solid #ccc;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>My Website</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
<section>
<h2>Welcome to my website!</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum vitae nisi ut elit porta consectetur. Nullam at justo quis erat bibendum commodo. Nulla quis est turpis. Sed ultrices enim nec nunc eleifend scelerisque. Nulla facilisi. Quisque auctor nibh vel libero euismod, eu lacinia nibh pharetra. Pellentesque euismod, ipsum in fringilla consequat, nisl augue congue turpis, ut dictum enim turpis vitae lorem. Donec dictum neque vel erat pharetra, nec rhoncus turpis ultricies. </p>
</section>
<footer>
<p>© 2021 My Website</p>
</footer>
</body>
</html>
```
阅读全文