-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (44 loc) · 2 KB
/
index.html
File metadata and controls
46 lines (44 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Enjoy some digital bubble wrap!">
<meta property="og:title" content="Pop!"/>
<meta property="og:description" content="Enjoy some digital bubble wrap!">
<meta property="og:image" content="https://i.imgur.com/hFZwzay.png">
<title>Pop!</title>
<link rel="icon" href="assets/pop-logo.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="script.js"></script>
<h1>
<a href="https://github.com/shorewind/website" target="_blank" rel="noopener noreferrer">
Pop!
</a>
<label class="switch">
<input id="toggle" type="checkbox" onclick="randomPop()">
<span class="slider round"></span>
</label>
</h1>
<hr width="100%"; size = "1"; color = "#E7F6F2";>
<div class="header">
<p id="info"><script>typeWriter()</script></p>
<p id="counter">pops: 0</p>
</div>
<div id="bubble-container"></div>
<p id="controls">press SPACE or toggle to pop a random bubble<br> press ENTER to refresh page</p>
<p id="compact-controls">Toggle to pop a random bubble!</p>
<button id="refresh-button" onclick="refresh()">Refresh ↻</button>
<footer id="footer">
<button id="acm-button" onclick="redirect('https://uah.acm.org/')">Back to UAH ACM</button>
<a href="https://github.com/shorewind" target="_blank" rel="noopener noreferrer">
<img id="github" src="assets/github-icon.png" alt="github icon">
</a>
<p>
<i>Created October 2022</i>
</p>
</footer>
</body>
</html>