html移动端网页设计代码
时间: 2023-09-24 19:11:38 浏览: 106
网页设计代码
以下是一个简单的 HTML 移动端网页设计代码示例:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>移动端网页设计示例</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
main {
padding: 10px;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
}
a {
color: #333;
text-decoration: none;
}
button {
display: block;
width: 100%;
padding: 10px;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>移动端网页设计示例</h1>
</header>
<main>
<p>这是一个简单的 HTML 移动端网页设计示例,包含了一个头部和一个内容区域。可以根据需要添加更多的内容。</p>
<button><a href="#">了解更多</a></button>
</main>
</body>
</html>
```
这个示例包含了一个头部和一个内容区域,头部使用了黑色背景和白色文字,内容区域使用了白色背景和黑色文字。按钮使用了灰色背景和白色文字,并且在点击时会有反馈效果。你可以根据实际需要调整样式和内容。
阅读全文