-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.7 KB
/
index.html
File metadata and controls
48 lines (46 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hazel</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="glass-button.css">
<script src="glass-button.js" defer></script>
</head>
<body>
<div class="slide" id="intro">
<h1 class="right-aligned">hazel</h1>
<p class="right-aligned subtitle">sometimes i make things</p>
<div class="flag-wrapper">
<img src="imgs/trans.png" class="flag">
<img src="imgs/lesbian.png" class="flag">
</div>
<div class="glass-container">
<div class="glass-box">
<p class="text-center">Scroll Down</p>
</div>
</div>
</div>
<div class="main-content">
<section id="about">
<h2>about me</h2>
<p>i'm hazel, a trans lesbian that sometimes does coding.</p>
<ul>
<li>okay at python</li>
<li>occasional web developer</li>
<li>minecraft datapack creator</li>
</ul>
<br>
<a class="scroll-to" data-target="projects">see my projects</a>
</section>
<section id="projects">
<h2>projects</h2>
<h3><a href="https://github.com/hablethedev/MAGE">MAGE</a> - work in progress</h3>
<h4>My Amazing Game Engine</h4>
<p>mage is a simple, work in progress, barebones game engine built with dear-imgui, glfw, and opengl to name a few. built on linux for linux (for now!)</p>
</section>
</div>
<script src="script.js"></script>
</body>
</html>