-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
69 lines (65 loc) · 1.69 KB
/
chat.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
61
62
63
64
65
66
67
68
69
<!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;
}
</style>
</head>
<body>
<h1>联系我们</h1>
<h2>梅布斯乔治的小站</h2>
<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>
</body>
</html>