-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (70 loc) · 2.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<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 href="https://fonts.googleapis.com/css?family=Baloo+Bhai|Satisfy|Kaushan+Script|Barlow:300,400,500,700|Press+Start+2P&display=swap"
rel="stylesheet">
<title>PokéRegion Master</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style/styles.css">
<script src="https://kit.fontawesome.com/a6deab4c82.js"></script>
</head>
<body>
<div class="banner">
<nav class="navbar">
<div class="nav-links">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!--PokeAPI HTML-->
<div class="region-selector">
<h2 class="selector-title">
Which region are you curious about?
</h2>
<select class="drop-down" name="" id="">
<option value="">Choose!</option>
<option value="kanto">Kanto</option>
<option value="johto">Johto</option>
<option value="hoenn">Hoenn</option>
<option value="sinnoh">Sinnoh</option>
<option value="unova">Unova</option>
<option value="kalos">Kalos</option>
<option value="alola">Alola</option>
</select>
</div>
</nav>
<header class="header" id="home">
<h1>Pokémon Region Generator</h1>
<h2>Select the region you're curious about to retrieve all the unique, awesome information!</h2>
<h3>Get ready for a nostalgic trip.</h3>
<h3>Once you select a region, look below for the sought out information.</h3>
</header>
</div>
<main>
<!--Dynaminc HTML goes here-->
<section class = region-info>
<div class = region-title>
</div>
<div class = "region-map">
</div>
<div class = "sprite-title">
</div>
<div class = "pokemon-sprites">
</div>
</section>
<div class="pokemon-container">
</div>
</main>
<footer id = 'contact'>
<h2>Courtesy of <a href="https://pokeapi.co/" title="PokéAPI's official webiste">PokéAPI</a>!</h2>
<div class = "icons"></div>
<a href="https://www.twitter.com/reemcodes" target="_blank" rel="noopener noreferrer" <i class="fab fa-twitter fa-2x" ></i></a>
<a href="https://www.github.com/reemhamz" target="_blank" rel="noopener noreferrer" <i class="fab fa-github fa-2x" ></i></a>
</footer>
</body>
</html>