-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (39 loc) · 1.4 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/style.css">
<title>rijenkii's website - about</title>
</head>
<body>
<header>
<h1>rijenkii's website</h1>
<nav>
about |
<a href="/projects.html">projects</a> |
<a href="/blog/index.html">blog</a>
</nav>
</header>
<hr>
<main>
<h2>Hello there!</h2>
<p>My name is rijenkii, I'm a student, coder, and just a guy that likes
doing weird things. I'm interested in Rust, game developing,
embedded, emulators, and web a little.</p>
<p>Source for this website and all my projects is located at my
<a href="https://github.com/rijenkii">Github</a></p>
<p>Design is inspired by
<a href="https://motherfuckingwebsite.com/">these</a>
<a href="http://bettermotherfuckingwebsite.com/">mother</a>
<a href="https://evenbettermotherfucking.website/">fucking</a>
<a href="https://thebestmotherfucking.website/">websites</a></p>
</main>
<hr>
<footer style="display: flex">
<span>copyright © rijenkii 2020</span>
</footer>
</body>
</html>