-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (55 loc) · 2.09 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
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta property="og:title" content="Who's That Pokemon?">
<meta property="og:description" content="Who's that Pokemon? A game built in HTML, CSS and Javascript by Will McAllister">
<meta property="og:image" content="./images/image.png">
<meta property="og:url" content="https://willmca.github.io/WhosThatPokemon/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/stylesheet.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<title>Who's That Pokemon?</title>
</head>
<body>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p class="hintText">"WORDS WORDS WORDS</p>
</div>
</div>
<audio autoplay>
<source src="./Audio/WTP.mp3" type="audio/mp3">
</audio>
<section class="wrapper">
<div class="top"><img id="logo" src="./images/pokeLogo.jpg" alt= "Pokemon Logo">
<h1>Who's That Pokemon?</h1>
</div>
<div class="image"><img class="pokemon" src=null alt = "Selected Pokemon">
<div class=rightName>
<h2 class="pName">null</h2>
</div>
</div>
<div class="form">
<form>Pokemon Name:
<input class="answer" type="text">
<input class="submit" type="submit" value="Submit">
</form>
</div>
<div class="score">
<h3>Score: 0</h3>
</div>
<div class="inputAndStats">
<div class="next2"><button class="next">Skip</button></div>
<div class="hintButton">
<button id="myBtn">Hint</button>
</div>
<div class="reset"><button class="reset">Reset</button></div>
</div>
</section>
<script src="javascript/javascript.js"></script>
</body>
</html>