-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.57 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 2.57 KB
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
<!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 = "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-container">
<div class = "logo-wrapper">
<img src = "./assets/pokeball.svg" alt = "pokeball" />
<h1> Pokedex </h1>
</div>
<div class = "search-container">
<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 = "search icon" class = "search-cross-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>
</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>
</body>
</html>