-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 2.25 KB
/
index.html
File metadata and controls
53 lines (50 loc) · 2.25 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Worm Wrangler </title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css">
<link rel="stylesheet" href="css/introPage.css">
<script src="javascript/introPage.js" defer></script>
</head>
<body>
<section class="section is-fullheight">
<h1 class="title is-2 has-text-centered"> Worm Wrangler </h1>
<div class="container">
<div class="columns">
<div class="column innerContainer1">
<img src="images/intro.png" alt="gameimage" width="600" height="495">
</div>
<div class="column innerContainer2">
<div class="gloveCustomizationArea">
<p class="subtitle"> Choose your gloves: </p>
<div class="gloves">
<div class="gloveImage" id="glove1"></div>
<div class="gloveImage" id="glove2"></div>
<div class="gloveImage" id="glove3"></div>
</div>
</div>
<div class="goToGameButtonDiv">
<button id="goToGameButton" class="button is-primary is-medium">Go to game</button>
</div>
<div class="soundDiv field is-grouped is-grouped-multiline">
<div class="control">
<label class="label">sound:</label>
</div>
<div class="control">
<input type="checkbox" aria-label="Toggle sound" id="soundCheckBox">
</div>
<div class="control">
<label class="label" id="adjustVolume">Adjust volume:</label>
</div>
<div class="control">
<input type="range" min="0" max="10" value="5" aria-label="Adjust volume" id="volumeSlider">
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>