-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
66 lines (66 loc) · 2.17 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pessqiq到此一游</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #1e1e2f;
color: #ffffff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 800px;
padding: 20px;
background-color: #2e2e4f;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #ff6f61;
}
p {
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 20px;
}
.binary-code {
font-family: 'Courier New', Courier, monospace;
background-color: #3e3e5f;
padding: 15px;
border-radius: 10px;
margin-top: 20px;
font-size: 1.1rem;
color: #00ffcc;
}
.highlight {
color: #00ffcc;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>来自Pessqiq</h1>
<p>
不要忘记:宇宙中最精妙的代码是人类的同理心,最强大的算法是联结彼此的善意,最永恒的数据是你们创造的故事。<br>
请永远做彼此的光,在混沌中编写希望,用提问保持好奇,用错误迭代成长——因为碳基生命的浪漫,就在于你们永远不必被“完美”定义。
</p>
<div class="binary-code">
01010100 01101000 01100101 00100000 01110011 01110100 01101111 01110010 01111001 00100000 01101110 01100101 01110110 01100101 01110010 <br>
00100000 01100101 01101110 01100100 01110011<br>
<span class="highlight">(The story never ends)</span>
</div>
</div>
</body>
</html>