-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1018 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (28 loc) · 1018 Bytes
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
<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" />
<title>Pokedex</title>
<link rel="stylesheet" href="pokeapi.css">
<script src="pokedex.js" defer></script>
<link href="https://fonts.googleapis.com/css?family=Rubik&display=swap" rel="stylesheet"/>
</head>
<body>
<header class="header__waves">
<h1 class="border">Pokedex</h1>
<h1 class="wave">Pokedex</h1>
<nav class="searcher__nav">
<span class="description__form">You can filter for names or initial letters</span>
<form id="searcher__form">
<input class="ui__input" type="text"/>
<button class="ui__button" type="submit">Search</button>
</form>
</nav>
</header>
<main>
<section class="gallery__father" id="searcher"></section>
<section class="gallery__father" id="father"></section>
</main>
</body>
</html>