-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 861 Bytes
/
index.html
File metadata and controls
39 lines (39 loc) · 861 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>域名更新</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 50px;
background-color: #002200;
}
.line1 {
font-size: 16px;
color: #009900;
margin-bottom: 60px;
}
.line2 {
font-size: 50px;
color: #00bb00;
margin-bottom: 220px;
}
.line2 a {
color: #00bb00; /* 链接颜色和文字颜色一致 */
text-decoration: none; /* 去掉下划线,喜欢可以删掉这行 */
}
.line3 {
font-size: 16px;
color: red;
}
</style>
</head>
<body>
<div class="line1">重要,本站域名已更新为:</div>
<div class="line2">
<a>www.yc-project.com</a>
</div>
<div class="line3">原域名 ycproject.cn 即将停用。</div>
</body>
</html>