-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (72 loc) · 2.42 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
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yik Wee's Portfolio</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- <script src="js/apiCache.js"></script> -->
<script src="js/appWindowElement.js"></script>
<script src="js/githubAPI.js"></script>
</head>
<body>
<!--[if IE]>
<div>INTERNET EXPLORER IS NOT SUPPORTED</div>
<![endif]-->
<div class="desktop">
<div class="menu">
<div onclick="spawnAboutMe()">
About me
</div>
<div onclick="spawnLanguages()">
Languages
</div>
<a href="https://github.com/yik-wee" target="_blank">
GitHub
</a>
</div>
</div>
<div id="windows">
<app-window title="About Me" height="28vh" width="30vw" pos-x="5vw" pos-y="25vh">
<h1>Koh Yik Wee</h1>
<p>Currently unemployed</p>
<p>
I make stuff I find interesting sometimes. You can find it on my
<object data="/assets/github.svg" type="image/svg+xml" width="20ch"></object>
<a href="https://github.com/yik-wee" target="_blank">GitHub</a>
</p>
</app-window>
<!-- oh my god wat are these onclick events this isn't react what am i doing -->
<app-window title="Languages" height="35vh" width="30vw" pos-x="45vw" pos-y="31vh">
<h1>Languages</h1>
<div id="repos"></div>
<p>
<i onclick="displayReposByLang(
this,
'Python'
)">Python</i> and
<i onclick="displayReposByLang(
this,
'HTML',
'CSS',
'JavaScript',
'TypeScript'
)">HTML/CSS/JS && TS/React</i>
</p>
<p>(I cannot c/c++ lmao)</p>
<h2>Others:</h2>
<p>
I've written some
<i onclick="displayReposByLang(
this,
'Rust'
)">Rust</i> and
<i onclick="displayReposByLang(
this,
'Shell'
)">Bash</i> before
</p>
</app-window>
</div>
</body>
</html>