-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (85 loc) · 3.24 KB
/
index.html
File metadata and controls
87 lines (85 loc) · 3.24 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>humensmoc</title>
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/lib/font-awesome/css/all.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon/favicon-16x16.png">
<link rel="manifest" href="/images/favicon/site.webmanifest">
<link rel="shortcut icon" href="/images/favicon/favicon.ico">
<style>
.home-container {
text-align: center;
padding: 50px 20px;
max-width: 800px;
margin: 0 auto;
}
.profile-section {
margin-bottom: 40px;
}
.profile-image {
width: 200px;
height: 200px;
border-radius: 50%;
margin-bottom: 20px;
}
.nav-buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.nav-button {
padding: 10px 20px;
background-color: #222;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.nav-button:hover {
background-color: #444;
}
</style>
</head>
<body>
<div class="home-container">
<div class="profile-section">
<!-- <img src="/images/avatar.jpg" alt="头像" class="profile-image"> -->
<h1><h1>humensmoc</h1></h1>
<p><p>test test</p></p>
</div>
<div class="about-section">
<h2><h2>个人简介</h2></h2>
<p><p>这里是一段个人简介...</p></p>
<p>
<i class="fa fa-envelope"></i> 邮箱:<a href="mailto:humensmoc@163.com">humensmoc@163.com</a><br>
<i class="fa fa-gamepad"></i> Itch.io:<a href="https://humensmoc.itch.io" target="_blank">humensmoc.itch.io</a><br>
<i class="fa fa-github"></i> GitHub:<a href="https://github.com/humensmoc" target="_blank">humensmoc</a><br>
<i class="fa fa-gamepad"></i> bilibili:<a href="https://space.bilibili.com/35884328" target="_blank">humensmoc</a><br>
</p>
</div>
<div class="nav-buttons">
<!-- <a href="/HexoBlog/blog.html" class="nav-button">
<i class="fa fa-blog"></i> Old Blog
</a> -->
<a href="/newblog.html" class="nav-button">
<i class="fa fa-pen"></i> Blog
</a>
<a href="/games.html" class="nav-button">
<i class="fa fa-gamepad"></i> Games
</a>
<a href="/AI.html" class="nav-button">
<i class="fa fa-robot"></i> AI
</a>
<!-- <a href="/projects.html" class="nav-button">
<i class="fa fa-project-diagram"></i> Projects
</a> -->
</div>
</div>
</body>
</html>