-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindedx.html
More file actions
39 lines (39 loc) · 934 Bytes
/
indedx.html
File metadata and controls
39 lines (39 loc) · 934 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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>GitHub Pages 测试页面</title>
<style>
body {
font-family: "Helvetica Neue", sans-serif;
background: #f2f2f2;
color: #333;
text-align: center;
padding: 80px;
}
.card {
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
display: inline-block;
}
h1 {
color: #007acc;
}
a {
color: #007acc;
text-decoration: none;
}
</style>
</head>
<body>
<div class="card">
<h1>🎉 GitHub Pages 启动成功!</h1>
<p>这是一个简单的测试页面。</p>
<p>页面部署于 GitHub Pages。</p>
<p>👉 <a href="https://github.com/yourusername/yourrepo" target="_blank">查看源码</a></p>
</div>
</body>
</html>