-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 2.48 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gotta match 'em all!</title> <!-- need a better title -->
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./assets/pokeball.png" type="image/x-icon">
<script src="src/script.js" defer></script>
</head>
<body>
<div class="game-container">
<div id="start">
<img src="assets/pokemonMatchGameLogo.png">
<p>
Welcome to Celadon Game Corner in Celadon City! <br/>
Pick a pair, see if they match. <br/>
Click the Pokeball to start again.
</p>
<img src="assets/pokeball.png" class="restart">
</div>
<div class="gameBoard">
<!-- cards to be created here -->
</div>
<div class = "victory">
<div class = "victory-content">
<span class = "close">X</span>
<p><span class = "victory-message"> </span></p>
<div class = "modal-restart">
<p>Want to battle again? Click the Pokeball to try again.</p>
<img src="assets/pokeball.png" class="restart-modal">
</div>
<form class="submit-highscore-form">
<h3>Want to see if you made it to the high scores?</h3>
<input type="text" name="name" value="" placeholder="Enter name..." class="highscore-name"><br/>
<input type="submit" name="submit" value="Submit High Score!" class="highscore-submit">
</form>
</div>
</div>
</div>
<div class="side-container">
<div class="gameplay-container">
<ul class="gameplay-elements">
<li>Turns: <strong><span class="turnCount"></span></strong></li>
<li>Timer: <strong><span class="gameTimer"></span></strong></li>
<li>Money: ₽<strong><span class="scoreCount"></span></strong></li>
</ul>
</div>
<div class="highscores">
<h2>Top 10 High Scores!</h2>
<ul class="highscore-list"></ul>
<button class="reset-scores">Reset High Scores</button>
</div>
<div class="comments">
<!-- Potential feature lets see if I can get highscores done first! -->
</div>
</div>
</body>
</html>