-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 2.33 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BubbleMan.IO</title>
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<canvas id="gameCanvas"></canvas>
<div id="gameInfo">
<p id="zoomLevel">Zoom: 5.00x</p>
<p id="score">Score: 0</p>
<p id="game-duration">Game Duration: 0s</p>
</div>
<div id="startScreen">
<h1>BubbleMan.IO</h1>
<p>Use arrow keys to move your bubble. Consume smaller bubbles to grow, but avoid larger ones!</p>
<input type="text" id="person" placeholder="Type your nickname here" autocomplete="off">
<button onclick="handleName()">OK</button>
<p xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/"><a property="dct:title"
rel="cc:attributionURL" href="https://hugonicolau.github.io/bubbleman/">BubbleMan IO</a> by <a
rel="cc:attributionURL dct:creator" property="cc:attributionName"
href="https://github.com/HugoNicolau">Hugo Nicolau</a> is licensed under <a
href="https://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" target="_blank"
rel="license noopener noreferrer" style="display:inline-block;">Creative Commons
Attribution-NonCommercial-ShareAlike 4.0 International<img
style="height:22px!important;margin-left:3px;vertical-align:text-bottom;"
src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt=""><img
style="height:22px!important;margin-left:3px;vertical-align:text-bottom;"
src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt=""><img
style="height:22px!important;margin-left:3px;vertical-align:text-bottom;"
src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1" alt=""><img
style="height:22px!important;margin-left:3px;vertical-align:text-bottom;"
src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt=""></a></p>
</div>
<script src="./script.js"></script>
</body>
</html>