河畔林语html代码
时间: 2023-12-11 13:00:30 浏览: 134
html学习之河畔林语
河畔林语是一段简单的HTML代码,用来展示一个河边的风景。代码如下:
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>河畔林语</title>
<style>
body {
background-image: url('river.jpg');
background-size: cover;
background-attachment: fixed;
background-position: center;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
text-align: center;
font-family: 'Microsoft YaHei', sans-serif;
}
#overlay {
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="overlay">
<h1>河畔林语</h1>
<p>青青河畔草,悠悠林间风。</p>
<p>河畔青草靓,林间微风香。</p>
</div>
</body>
</html>
```
这段代码使用HTML和CSS来创建一个展示河畔风景的页面。背景图片是一条河流,文字为白色并置于半透明的黑色遮罩之上,以提高可读性。整个页面内容都居中显示,使得浏览者能够聚焦于诗意的文字和美丽的风景。
阅读全文