-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.28 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.28 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MaxSinoh</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="assets/logo.jpg" alt="Logo" class="logo">
<h1>Max Sinoh</h1>
<nav>
<ul>
<li><a href="about">关于</a></li>
<li><a href="contact">联系</a></li>
<li><a href="sillodish">西洛德语</a></li>
<li><a href="tgg">TGG</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>关于</h1>
<p>我是一个来着中国的中学生。</p>
<p>我有着非常广泛的兴趣爱好。</p>
<p>...</p>
</section>
<section>
<h1>联系</h1>
<p>电子邮箱:acjh666@163.com</p>
<p>GitHub:@MaxSinoh</p>
<p>Bilibili:@鿏氪锶</p>
<p>QQ: 3929229056</p>
<p>...</p>
</section>
</main>
<footer>
<p>Copyright © 2025 Max Sinoh</p>
<p>保留所有权利</p>
</footer>
<script src="script.js"></script>
</body>
</html>