forked from crisgon/pokeinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (24 loc) · 833 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="img/favicon.ico"/>
<link rel="stylesheet" href="pokemons.css">
<title>Poke Info</title>
</head>
<body>
<main class="container">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/98/International_Pok%C3%A9mon_logo.svg" alt="Pokemon Logo">
<form action="" class="search">
<input type="search" class="search-input" placeholder="Search about a pokemon using name or pokedex number">
<button class="search-button">Search</button>
</form>
<section class="pokemon">
</section>
<span class="error">Not Found!</span>
</main>
<script src="pokemons.js"></script>
</body>
</html>