-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
103 lines (89 loc) · 2.38 KB
/
contact.html
File metadata and controls
103 lines (89 loc) · 2.38 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!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>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #FFEB3B, #4CAF50);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.contact-card {
background: rgba(255, 255, 255, 0.9);
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
text-align: center;
max-width: 600px;
width: 90%;
}
h1 {
color: #2E7D32;
margin-bottom: 30px;
font-size: 2.5em;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.contact-item {
margin: 25px 0;
padding: 15px;
background: rgba(255, 255, 255, 0.95);
border-radius: 10px;
transition: transform 0.3s ease;
}
.contact-item:hover {
transform: translateY(-5px);
}
h2 {
color: #4CAF50;
margin-bottom: 10px;
font-size: 1.8em;
}
p {
color: #333;
font-size: 1.2em;
line-height: 1.6;
}
@media (max-width: 480px) {
.contact-card {
padding: 20px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
p {
font-size: 1em;
}
}
</style>
</head>
<body>
<div class="contact-card">
<h1>联系我们</h1>
<div class="contact-item">
<h2>📌 QQ</h2>
<p>QQ号:<br>3931650248</p>
</div>
<div class="contact-item">
<h2>📞 电话</h2>
<p>+86 198-4181-5517</p>
</div>
<div class="contact-item">
<h2>📧 电子邮件</h2>
<p>command_stone_luck@outlook.com<br>cst@cdst.dpdns.org</p>
</div>
</div>
</body>
</html>