-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqq.html
56 lines (56 loc) · 1.67 KB
/
qq.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>好友添加方式变更通知</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: 50px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: #d9534f;
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}
p {
font-size: 16px;
margin-bottom: 15px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>好友添加方式变更通知</h1>
<p>目前暂时关闭了通过 QQ 二维码图片添加好友的方式。</p>
<p>如有问题请前往以下页面发起(可能需要梯子):<br>
<a href="https://github.com/JuseTiZ/JuseTiZ.github.io/issues" target="_blank">https://github.com/JuseTiZ/JuseTiZ.github.io/issues</a>
</p>
<p>或者你可以通过 email 发送邮件至:<br>
<a href="mailto:291195857@qq.com">291195857@qq.com</a>
</p>
<p>之后的好友请求将不再通过,感谢理解!</p>
</div>
</body>
</html>