-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 944 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class='wrapper'>
<div class='poke-stats'>
<div>
Score: <span class='score'>0</span>
</div>
<div>
Best: <span class='best-score'>0</span>
</div>
<div>
Lives: <span class='lives'>3</span>
</div>
</div>
<div class='poke-container'>
<img class='poke-image desaturate' src="./img/pokemon/Ivysaur.png" alt="">
</div>
<div class="poke-buttons">
<button class='guess-button'>Guess</button>
</div>
<div id="snackbar">Some text some message..</div>
</div>
<script src="js/main.js"></script>
</body>
</html>