-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (58 loc) · 2.49 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
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A Pokémon guessing game! Try to guess the Pokémon based off of its silhouette.">
<meta name="keywords" content="Pokémon game guess">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Who's That Pokémon?</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a7a2c3e7aa.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="instructions.html">How To Play</a></li>
<li><a href="https://www.pokemon.com/us/pokedex/" target="_blank" rel="noopener noreferrer">Official Pokédex</a></li>
</ul>
</nav>
</header>
<h1>Who's That Pokémon?</h1>
<div class="img-area">
<img src="" id="pokemon" class="silhouette" alt="Pokémon silhouette">
</div>
<div class="pokemon-data invisible">
<span class="generation data"></span>
<ul class="types"></ul>
</div>
<div class="play-area">
<div class="controls-new">
<button type="button" class="btn" id="btn-new">New Pokemon</button>
</div>
<div class="controls-answer">
<button type="button" class="btn" id="btn-checkAnswer">Submit</button>
</div>
<div class="answer-area">
<h2 class="hidden answer">Answer</h2>
<input class="user-answer" type="text">
</div>
<div class="idk">
<button type="button" id="btn-idk">I don't know!</button>
</div>
</div>
<footer>
<a href="https://github.com/leifaj" target="_blank" rel="noopener noreferrer"><i class="fa fa-brands fa-github fa-2x"></i></a>
<p>All images © Nintendo.</p>
<p>Pokémon data from <a href="https://pokeapi.co/" target="_blank" rel="noopener noreferrer">PokéAPI.</a></p>
<p>Background image from <a href="https://www.reddit.com/r/pokemon/comments/420xiv/whos_that_pokemon_1920x1080_hd_template_i_just/" target="_blank" rel="noopener noreferrer">u/CaptainRako.</a></p>
</footer>
<script type="text/javascript" src="js/main.js" ></script>
</body>
</html>