帮我写一个首页的前端页面
时间: 2023-08-28 19:52:28 浏览: 157
当然可以!这是一个简单的示例代码,你可以根据自己的需求进行修改和补充:
```html
<!DOCTYPE html>
<html>
<head>
<title>首页</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
}
p {
text-align: center;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Our Website</h1>
<p>Discover the Latest News and Updates</p>
<a class="button" href="#">Learn More</a>
</div>
</body>
</html>
```
这是一个简单的HTML页面,包含一个标题、一个段落和一个按钮。你可以根据需要修改样式、文本内容和按钮链接。将代码保存为一个HTML文件,然后在浏览器中打开即可看到效果。希望对你有帮助!
阅读全文