-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="style.css">
<title>Among Us Ejection</title>
<!-- audios -->
<audio src="sounds/impostor.ogg" id="impostor-audio"></audio>
<audio src="sounds/vote.ogg" id="vote-audio" loop></audio>
<audio src="sounds/sound.ogg" id="ambience-audio"></audio>
</head>
<body>
<a href="https://github.com/Magoninho/Among-Us-Ejection-web"><img loading="lazy" width="149" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1" style="position: absolute; top: 0; border: 0; right: 0;"></a>
<div id="menu">
<img src="images/among-us-logo.png">
<p><i><b>Do your think your friend is sus? Eject him!</b></i></p>
<h3>Name:</h3>
<input id="player-name" value="NoobMaster69" type="text"><br><br>
<h3>Color:</h3>
<button class="start-button" style="color: var(--red);">red</button>
<button class="start-button" style="color: var(--green);">green</button>
<button class="start-button" style="color: var(--cyan);">cyan</button>
<button class="start-button" style="color: var(--yellow);">yellow</button>
</div>
<canvas id="game-canvas" width="800" height="600"></canvas>
<script type="module" src="dist/Main.js" defer></script>
</body>
<!-- by magoninho -->
</html>