Spaces:
Sleeping
Sleeping
xyzsun
commited on
Create index.html
Browse files- index.html +50 -0
index.html
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="zh-CN">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>将进酒</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
background: linear-gradient(to bottom, #2ecc71, #006400);
|
| 10 |
+
margin: 0;
|
| 11 |
+
padding: 0;
|
| 12 |
+
display: flex;
|
| 13 |
+
justify-content: center;
|
| 14 |
+
align-items: center;
|
| 15 |
+
min-height: 100vh;
|
| 16 |
+
font-family: 'Microsoft YaHei', sans-serif;
|
| 17 |
+
color: #fff;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
#poem-container {
|
| 21 |
+
text-align: center;
|
| 22 |
+
padding: 20px;
|
| 23 |
+
background: rgba(0, 0, 0, 0.5);
|
| 24 |
+
border-radius: 10px;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
#poem {
|
| 28 |
+
font-size: 1.5em;
|
| 29 |
+
line-height: 1.6;
|
| 30 |
+
}
|
| 31 |
+
</style>
|
| 32 |
+
</head>
|
| 33 |
+
<body>
|
| 34 |
+
<div id="poem-container">
|
| 35 |
+
<div id="poem">
|
| 36 |
+
<p>君不见,黄河之水天上来,奔流到海不复回。</p>
|
| 37 |
+
<p>君不见,高堂明镜悲白发,朝如青丝暮成雪。</p>
|
| 38 |
+
<p>人生得意须尽欢,莫使金樽空对月。</p>
|
| 39 |
+
<p>天生我材必有用,千金散尽还复来。</p>
|
| 40 |
+
<p>烹羊宰牛且为乐,会须一饮三百杯。</p>
|
| 41 |
+
<p>岑夫子,丹丘生,将进酒,杯莫停。</p>
|
| 42 |
+
<p>与君歌一曲,请君为我倾耳听。</p>
|
| 43 |
+
<p>钟鸣鼎食之家,男儿何不帅风流?</p>
|
| 44 |
+
<p>出门踏绿锦,泛舟泛江水。</p>
|
| 45 |
+
<p>君不见,西海之水天上来,奔流到海不复回。</p>
|
| 46 |
+
<p>君不见,东海之水日东生,落花入海复几时。</p>
|
| 47 |
+
</div>
|
| 48 |
+
</div>
|
| 49 |
+
</body>
|
| 50 |
+
</html>
|