-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.php
More file actions
48 lines (41 loc) · 980 Bytes
/
work.php
File metadata and controls
48 lines (41 loc) · 980 Bytes
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
<!--
©️ Benxp 2023.All rights reserved.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>网页正在维护中</title>
<style>
body {
text-align: center;
font-family: Arial, sans-serif;
background-color: #f2f2f2;
color: #333;
}
.logo {
margin-top: 80px;
}
h1 {
font-size: 28px;
margin-top: 40px;
}
p {
font-size: 16px;
margin-top: 20px;
color: #666;
}
</style>
</head>
<body>
<div class="logo">
<img src="logo.png" alt="网站Logo">
</div>
<h1>网页正在维护中</h1>
<p>非常抱歉,我们的网站目前正在维护中,给您带来不便我们深表歉意。</p>
<p>请稍后再访问,我们将尽快恢复服务。</p>
</body>
</html>
<!--
©️ Benxp 2023.All rights reserved.
-->