-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (68 loc) · 3.45 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta charset="utf-8"/>
<meta name="description" content="Glitchette's / Dominique's Homepage"/>
<meta name="keywords" content="Glitchette"/>
<meta name="author" content="Glitchette"/>
<meta name="theme-color" content="#795685" data-react-helmet="true"/>
<meta property="og:title" content="Hi, I'm Glitchette,"/>
<meta property="og:site_name" content="Glitchy.ga"/>
<meta property="og:description" content="a 20y/o amazing game designer!"/>
<meta property="og:image" content="https://www.glitchy.ga/assets/images/hutaoinsane.png"/>
<title>Hi, I'm Glitchette</title>
<link rel="stylesheet" type="text/css" href="extsheets\css\mainstyle.css">
<link rel="preload" as="font">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="extsheets\js\mainscript_new.js"></script>
</head>
<body>
<body onload="onLoadFunc()"></body>
<main>
<div id="box">
<div id="home">
<menu id="homeMenu">
<li> <p onclick="openBox('profile')">Profile</p></li>
<li> <p onclick="openBox('portfolio')">Portfolio</p></li>
<li> <p onclick="openBox('contact')">Links</p></li>
</menu>
<h1 id="name_main" class="home_content">Glitchette</h1>
<h2 id="name_secondary" class="home_content">Dominique · Domi · Glitchy</h2>
<h3 id="blurp" class="home_content">20y/o game designer nerd among other things.</h3>
<h3 id="wip_disclaimer" class="home_content">Note that this site is a work in progress.</h3>
</div>
<div id="profile">
<button class="closebtn" id="closebtn_profile" onclick="closeBox('profile')">×</button>
<img src="https://pbs.twimg.com/profile_images/1512114763303690244/h0Lr1c6o_400x400.jpg" id="avatar"/>
<div id="info">
<span id="fullname">Dominique Vink</span>
<span id="usertag">@Glitchette</span>
<span id="dob">Age</span>
<span id="gender">She // Her</span>
<span id="occupation">Game Designer</span>
<span id="disclaimer_prof">This page is subject to heavy redesign & additions, <br>just wanted it to function.</span>
</div>
<div id="personal_description">
<p id="bio">Nerd who has loved games, and creating them pretty much all her life; Favorite games include Minecraft, Paladins & League of Legends.</p>
</div>
<div id="misc_info">
</div>
</div>
<div id="portfolio">
<button class="closebtn" id="closebtn_portfolio" onclick="closeBox('portfolio')">×</button>
<div id="portfolio_content">
<span id="tba1">Widget with all the stuff I've worked on or am working on will be added here.</span>
</div>
</div>
<div id="contact">
<button class="closebtn" id="closebtn_contact" onclick="closeBox('contact')">×</button>
<div id="contact_content">
<span id="tba2">My various social links and other links will be added here.</span>
</div>
</div>
<p id="quote">"Human beings are strong because we have the ability to change ourselves."</p>
</div>
</main>
</body>
</html>