-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (81 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- CSS Files -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="main">
<header class="header home">
<div class="container">
<div class="logo-wrapper">
<img src="./assets/pokeball.svg" alt="pokeball" />
<h1>Pokedex</h1>
</div>
<div class="search-wrapper">
<div class="search-wrap">
<img
src="./assets/search.svg"
alt="search icon"
class="search-icon"
/>
<input
type="text"
class="search-input body3-fonts"
placeholder="Search"
id="search-input"
/>
<img
src="./assets/cross.svg"
alt="cross icon"
class="search-close-icon"
id="search-close-icon"
/>
</div>
<div class="sort-wrapper">
<div class="sort-wrap">
<img
src="./assets/sorting.svg"
alt="sorting"
class="sort-icon"
id="sort-icon"
/>
</div>
<div class="filter-wrapper">
<p class="body2-fonts">Sort by:</p>
<div class="filter-wrap">
<div>
<input
type="radio"
id="number"
name="filters"
value="number"
checked
/>
<label for="number" class="body3-fonts">Number</label>
</div>
<div>
<input type="radio" id="name" name="filters" value="name" />
<label for="name" class="body3-fonts">Name</label>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="pokemon-list">
<div class="container">
<div class="list-wrapper"></div>
</div>
<div id="not-found-message">Pokemon not found</div>
</section>
</main>
<!-- JS Files -->
<script src="./pokemon.js"></script>
<script src="./search.js"></script>
</body>
</html>