html+css网页设计源代码
时间: 2024-01-30 09:11:14 浏览: 134
以下是一个简单的HTML和CSS网页设计的源代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>网页设计示例</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
color: #333333;
text-align: center;
}
p {
color: #666666;
font-size: 16px;
line-height: 1.5;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #ffffff;
text-decoration: none;
border-radius: 4px;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My Website</h1>
<p>This is a sample paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam auctor, nunc id aliquet ultricies, nisl nunc tincidunt nunc, id lacinia nunc nunc id nunc.</p>
<a href="#" class="button">Learn More</a>
</div>
</body>
</html>
```
这个示例展示了一个简单的网页设计,包括一个标题、一个段落和一个按钮。CSS部分定义了页面的样式,包括背景颜色、字体、颜色、边距、阴影和按钮样式。
阅读全文