-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (51 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name=”image” property=”og:image” content=”screenshots/full-game.png” >
<link rel="stylesheet" href="styles/style.css">
<title>Sushi Sweeper</title>
</head>
<body>
<header>
<form action="selection">
<h1>Sushi<br>Sweeper</h1>
<div class="buttons">
<button class="button" id="start">Order</button>
<button class="button" id="reset">Send Back</button><br>
<button class="button" id="high-score">High Scores!</button>
</div>
<div class="switches">
<h3>Sushi Selection:</h3>
<label for="size"> <input type="radio" checked class="size" name="size" id="small"> Bento</label><br>
<label for="size"> <input type="radio" class="size" name="size" id="medium"> Platter</label><br>
<label for="size"> <input type="radio" class="size" name="size" id="large"> Banquet</label>
<h3>Spice Level:</h3>
<label for="spice"><input type="radio" checked class="spice" name="spice" id="easy">Mild</label><br>
<label for="spice"><input type="radio" class="spice" name="spice" id="normal">Medium</label><br>
<label for="spice"><input type="radio" class="spice" name="spice" id="hard">Extra-Spicy</label>
</div>
<div class="game-details">
<div class="details"><p>Score:</p> <div class="numbers"><span id="score"></span></div></div>
<div class="details"><p>Timer:</p> <div class="numbers"><span id="timer"></span></div></div>
<div class="details"><p>Wasabi:</p> <div class="numbers"><span id="mines"></span></div></div>
</div>
</form>
<div class="logo-box">
<div class="score-board">
<h2>Sushi Champs!</h2>
<ol class="winners"></ol>
</div>
<img class="sushi-board" src="images/iso_sushi_logo.png" alt="Sushi Board">
<small><a target="_blank"
href="mailto:hello@laurencewalshe.dev?subject=I Love Sushi!&body=Hello Laurence, Genius game. Are you available to discuss your next project?">hello@laurencewalshe.dev</a></small>
</div>
</header>
<section class="game-section">
<main class="grid">
</main>
</section>
<script src="scripts/app.js"></script>
</body>
</html>