-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (134 loc) · 5.78 KB
/
index.html
File metadata and controls
144 lines (134 loc) · 5.78 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Starki 的个人 GitHub Pages 主页。">
<title>Starki</title>
<link rel="icon" href="images/head.jpg">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<a class="brand" href="./" aria-label="Starki 主页">
<img src="images/head.jpg" alt="Starki 的头像">
<span>Starki</span>
</a>
<nav class="site-nav" aria-label="站点导航">
<a href="#tools">小工具</a>
<a href="#games">小游戏</a>
<a href="https://gugugugugutian.github.io/" target="_blank" rel="noreferrer">推荐</a>
</nav>
</header>
<main class="home-shell">
<section class="intro" aria-labelledby="home-title">
<div class="intro-copy">
<p class="eyebrow">Fool Student</p>
<h1 id="home-title">Hi,我是 Starki。</h1>
<p class="lead">AI 真好用,零前端基础也能做网页。</p>
<div class="intro-actions">
<a class="button" href="#tools">看看工具</a>
<a class="button secondary" href="#games">玩点游戏</a>
</div>
</div>
<img class="intro-portrait" src="images/head.jpg" alt="Starki 的头像">
</section>
<section class="recommend-line" aria-label="推荐链接">
<p><span>Recommended</span> <a href="https://gugugugugutian.github.io/" target="_blank" rel="noreferrer">gugugugugutian</a></p>
</section>
<section class="section-block" id="tools" aria-labelledby="tools-title">
<div class="section-heading">
<div>
<p class="section-kicker">Tools</p>
<h2 id="tools-title">小工具</h2>
</div>
</div>
<div class="link-grid">
<a class="link-card" href="./tools/random_groups.html">
<span class="card-label">01</span>
<div>
<h3>随机分组</h3>
<p>打乱成员顺序,平均分到每个小组。</p>
</div>
</a>
<a class="link-card" href="./tools/random_number.html">
<span class="card-label">02</span>
<div>
<h3>随机数生成器</h3>
<p>设置范围、数量和是否允许重复,一键生成结果。</p>
</div>
</a>
<a class="link-card" href="./tools/text_counter.html">
<span class="card-label">03</span>
<div>
<h3>文本统计</h3>
<p>统计字符数、估算字数、行数和段落数。</p>
</div>
</a>
<a class="link-card" href="./tools/timestamp_converter.html">
<span class="card-label">04</span>
<div>
<h3>时间戳转换</h3>
<p>在 Unix 时间戳和本地日期时间之间转换。</p>
</div>
</a>
<a class="link-card" href="./tools/password_generator.html">
<span class="card-label">05</span>
<div>
<h3>密码生成器</h3>
<p>按长度和字符类型生成随机密码。</p>
</div>
</a>
<a class="link-card" href="./tools/text_diff.html">
<span class="card-label">06</span>
<div>
<h3>文本对比</h3>
<p>带行号实时查看两段文本的行级和行内差异。</p>
</div>
</a>
</div>
</section>
<section class="section-block" id="games" aria-labelledby="games-title">
<div class="section-heading">
<div>
<p class="section-kicker">Games</p>
<h2 id="games-title">来玩点小游戏</h2>
</div>
</div>
<div class="link-grid">
<a class="link-card" href="./games/missile-game-master/index.html">
<span class="card-label">01</span>
<div>
<h3>开导弹</h3>
<p>躲开障碍,飞得更远一点。</p>
</div>
</a>
<a class="link-card" href="./games/t-rex-runner-gh-pages/index.html">
<span class="card-label">02</span>
<div>
<h3>小恐龙</h3>
<p>经典离线恐龙跑酷,电脑端体验更稳。</p>
</div>
</a>
<a class="link-card" href="./games/Cyber woodenfish_files/Cyber woodenfish.html">
<span class="card-label">03</span>
<div>
<h3>电子木鱼</h3>
<p>敲一下,功德加一点。</p>
</div>
</a>
<a class="link-card" href="./games/gobang/gobang.html">
<span class="card-label">04</span>
<div>
<h3>五子棋</h3>
<p>横竖斜连成五子就赢。</p>
</div>
</a>
</div>
</section>
</main>
<footer class="site-footer">
<p>Made by Starki.</p>
</footer>
</body>
</html>