-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathchat.html
More file actions
87 lines (81 loc) · 2.28 KB
/
Copy pathchat.html
File metadata and controls
87 lines (81 loc) · 2.28 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>联系我们</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
.header {
display: flex;
flex-direction: row;
justify-content: center;
width: 100%;
margin-bottom: 40px;
}
.header h1, .header h2, .header h3 {
margin: 0 10px;
}
.button-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
}
.button {
background-color: #3498db;
color: white;
border: none;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 10px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #2980b9;
}
.footer {
position: fixed; /* 固定在页面底部 */
bottom: 0; /* 距离底部0 */
width: 100%; /* 宽度为100% */
text-align: center; /* 水平居中 */
color: gray; /* 设置文字颜色为灰色 */
font-size: 18px; /* 可选:设置文字大小 */
}
.footer a{
color: cyan;
}
</style>
</head>
<body>
<h1>联系我们</h1>
<h2>梅布斯乔治的小站</h2>
<a href="https://t.me/张晓雨" target="_blank">Telegram</a>
<a href="https://twitter.com/mbilse001" target="_blank">Twitter</a>
<div class="button-container">
<button class="button" onclick="location.href='plus.html'">加微信</button>
<button class="button" onclick="location.href='https://kuaishou.cn/profile/3xrfsy8nwtcfs7q'">加快手</button>
<button class="button" onclick="location.href='https://github.com/Mbilse'">Github</button>
<button class="button" onclick="location.href='telegramplus.html'">telegram</button>
<button class="button" onclick="location.href='index.html'">主页</button>
<button class="button" onclick="location.href='users.html'">更多</button>
</div>
<div class="footer">
Copyright Mbilse 2025 | <a href=" ">梅布斯</a>
</div>
</body>
</html>