-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>诗词</title>
<style>
body {
background-color: #f7f3eb;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.poem-container {
background-color: transparent;
padding: 40px 60px;
text-align: center;
}
.content {
font-size: 28px;
color: #2c3e50;
line-height: 2.5;
letter-spacing: 4px;
font-family: "Times New Roman", SimSun, "宋体", serif;
}
</style>
</head>
<body>
<div class="poem-container">
<div class="content">
故人西辞黄鹤楼,<br>
烟花三月下扬州。<br>
孤帆远影碧空尽,<br>
惟见长江天际流。
</div>
</div>
</body>
</html>