-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
72 lines (69 loc) · 2.38 KB
/
index.htm
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
<!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 {
font-family: 'Arial', sans-serif;
background-color: #f0f0f0;
color: #333;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 600px;
width: 100%;
text-align: center;
}
h1 {
color: #333;
}
.link-list {
list-style-type: none;
padding: 0;
}
.link-list li {
margin: 10px 0;
}
.link-list a {
text-decoration: none;
color: #007BFF;
font-size: 18px;
transition: color 0.3s, background-color 0.3s;
padding: 10px 15px;
border-radius: 5px;
display: inline-block;
}
.link-list a:hover {
color: #fff;
background-color: #007BFF;
}
</style>
</head>
<body>
<div class="container">
<h1>个人网站</h1>
<ul class="link-list">
<li><a href="https://xinshenghu.github.io/html5/luping.html" target="_blank">录屏</a></li>
<li><a href="https://xinshenghu.github.io/chatpage/index.htm" target="_blank">chatgpt自动生成网站</a></li>
<!-- <li><a href="https://xinshenghu.github.io/templatepage/changan/" target="_blank">templatepage</a></li> -->
<!-- <li><a href="https://xinshenghu.github.io/html5/" target="_blank">html5</a></li> -->
<li><a href="https://xinshenghu.github.io/templatepage/changan/" target="_blank">模板 西安 </a></li>
<li> <a href="https://xinshenghu.github.io/templatepage/lunyu/">论语</a></li>
<li><a href="https://xinshenghu.github.io/html5/tianqi/index.html" target="_blank">天气</a></li>
<li><a href="https://xinshenghu.github.io/html5/fanzhuanpintu/index.html" target="_blank">jQuery 翻转拼图游戏</a></li>
</ul>
</div>
</body>
</html>
</html>