利用html写一个好看的页面
时间: 2023-08-01 14:09:06 浏览: 78
使用VScode写一个html页面
5星 · 资源好评率100%
好的,下面是一个简单的HTML页面示例,包含一些基本的HTML标签和CSS样式,可以让页面看起来更加好看:
```html
<!DOCTYPE html>
<html>
<head>
<title>我的HTML页面</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
text-align: center;
margin-top: 50px;
}
p {
font-size: 18px;
line-height: 1.5;
padding: 10px;
background-color: #fff;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
border-radius: 5px;
margin-top: 20px;
margin-bottom: 20px;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: #fff;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
}
.button:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<header>
<h1>欢迎来到我的页面</h1>
</header>
<main>
<p>这是一个简单的HTML页面示例,包含一些基本的HTML标签和CSS样式,可以让页面看起来更加好看。</p>
<img src="https://via.placeholder.com/500x300" alt="示例图片">
<a href="#" class="button">了解更多</a>
</main>
<footer>
<p>版权所有 © 2021</p>
</footer>
</body>
</html>
```
这个页面包含了一个标题、一段文字、一张图片和一个按钮。CSS样式使得页面看起来更加美观,比如背景颜色、字体、边框和阴影的设置,以及按钮的样式和悬停效果的设置。
您可以根据自己的需求,自定义更多的HTML标签和CSS样式,来实现一个更加好看的页面。
阅读全文