-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (68 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="preload" as="style">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<script defer src="sketches/allsketches.min.js"></script>
<script defer src="main.js"></script>
<link rel="icon" type="image/png" href="assets/favicon.png">
<title>rnd.exe</title>
</head>
<body>
<div role="navigation" class="sidenav">
<div class="header">
<div class="mainheader">
<a href="https://rndexe.github.io">
<button>rnd.exe</button>
</a>
</div>
<div class="subheader">
<!--<button>About me</button>-->
<a href="https://instagram.com/rnd.exe" target="_blank">
<img src="assets/insta.png">
</a>
<a href="https://twitter.com/realDonaldTrump" target="_blank">
<img src="assets/twitterbig.png">
</a>
<a href="mailto:himanshu.ernde@gmail.com?subject=Hello%20There%21&body=General%20Kenobi...%0AYou're%20a%20bold%20one." target="_blank">
<img src="assets/email.png">
</a>
</div>
</div>
<button id="menu" class="blue">< Menu</button>
<div id="dropdown" class="open" >
<button id="sketch1" onclick = "chooseSketch(this)">
<span class="li">1</span>
test sketch number 1
</button>
<button id="sketch2" onclick = "chooseSketch(this)">
<span class="li">2</span>
here's another one
</button>
<button id="bouncyballs" onclick = "chooseSketch(this)">
<span class="li">3</span>
bouncy bounce
</button>
<button id="randomtext" onclick = "chooseSketch(this)">
<span class="li">4</span>
bootleg matrix
</button>
<button id="rect" onclick = "chooseSketch(this)">
<span class="li">5</span>
wannabe PaulSmith
</button>
<button id="stars" onclick = "chooseSketch(this)">
<span class="li">6</span>
starfield
</button>
</div>
</div>
<div id="bg">
<div id="bgsketch"></div>
</div>
</body>
</html>