-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (59 loc) · 1.68 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="zh">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rarar_XD的小网站</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
padding: 50px;
background: linear-gradient(135deg, #f4f4f4, #e2e2e2);
margin: 0;
}
.container {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
display: inline-block;
max-width: 600px;
margin: auto;
}
h1 {
color: #333;
font-size: 2.5em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
color: #555;
line-height: 1.6;
}
a {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>嗨👋!这里是 Rarar_XD 的一个小网站!</h1>
<p>恭喜你发现了这里!然而这边什么都没有!</p>
<p>假如你想跟主播聊一聊的话,请发送邮件至 <a href="mailto:[email protected]">[email protected]</a></p>
<a href="https://blog.rarar-xd.top/" target="_blank" style="color: blue; text-decoration: none; font-size: 18px;">
来看看我的我的博客吧~
</a>
</div>
</body>
</html>