-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (58 loc) · 2.14 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 charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pokedex</title>
<link rel="shortcut icon" href="./assets/pokeball.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css" />
<script src="./pokemon.js" defer></script>
<script src="./search.js" defer></script>
</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>
<footer>
<div class="footer">Created with 🤍 by <a href="https://github.com/developerkeshavkumar">Keshav Kumar</a></div>
</footer>
</main>
</body>
</html>