-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (67 loc) · 2.15 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="viewport" content="width=device-width, initial-scale=1.0" />
<title>PokeeDex</title>
<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=Bangers&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./landing.css" type="text/css" />
<script src="https://unpkg.com/[email protected]/dist/axios.min.js"></script>
</head>
<body>
<header></header>
<main>
<section class="poke-info">
<div class="poke-info__bubble">
<h2 class="poke-info__name" id="poke-name-display">
Who's there in the tall grass?!
</h2>
</div>
</section>
<section class="pokedex">
<div class="pokedex__container">
<div class="pokedex__top">
<div class="pokedex__bluecircle"></div>
<div class="pokedex__bluecircle--highlight"></div>
<div class="pokedex__smallcircle--red"></div>
<div class="pokedex__smallcircle--yellow"></div>
<div class="pokedex__smallcircle--green"></div>
</div>
<div class="pokedex__main">
<div class="pokedex__screen-border">
<div class="pokedex__screen">
<img
src="./who_pokemon.0.jpg"
alt=""
id="pokedex-image"
class="pokedex__image--cover"
/>
</div>
</div>
<div class="pokedex__gamepad">
<button
type="button"
id="randomize-button"
class="pokedex__button"
>
Let's look!
</button>
</div>
</div>
</div>
</section>
<section class="poke-info">
<div class="poke-info__bubble">
<p class="poke-info__type" id="poke-types"></p>
</div>
</section>
</main>
<footer></footer>
<script src="landing.js"></script>
</body>
</html>