-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 1.81 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>hyperbel's website</title>
</head>
<body>
<header>
</header>
<main>
<input type="radio" name="navigation" id="home_button" checked>
 <label for="home_button">home/</label>
<input type="radio" name="navigation" id="projects_button">
 <label for="projects_button">projects/</label>
<article id="home">
<h1>Hi, im hyperbel</h1>
</article>
<article id="projects">
<h1>projects</h1>
<details>
<summary>
this website!
</summary>
i built this website using plain html + css. it's served by github! (thx :))
</details>
<details>
<summary>
resq-disk
</summary>
this is an iso image based on archiso with some more tools pre-installed, for hopefully making it easier to recover / rescue a broken system.
</details>
<details>
<summary>
simpleNAS
</summary>
i made a nas thingy in go. it's not very good, but it works (i think).
</details>
<details>
<summary>
mt
</summary>
a tool for moving things to the trash bin, instead of deleting it like with <code>rm</code>
</article>
</main>
<footer>
<hr/>
<p><a href="https://github.com/hyperbel">@hyperbel</a> on github</p>
</footer>
</body>
</html>