-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./img/pokeball.ico" type="image/x-icon" />
<meta name="title" content="Pokédex" />
<meta name="description" content="An application that allows you to search for any Pokémon." />
<meta name="keywords" content="PokeDex, Pokemon Finder" />
<meta name="author" content="Manuel Muñiz" />
<title>Pokédex</title>
<!-- Css Styles -->
<link rel="stylesheet" href="styles.css" />
<!-- Css Styles -->
</head>
<body>
<div class="search-section">
<h1>PokéDex</h1>
<input type="text" name="" id="inputSearch" placeholder="Search for any Pokémon" />
</div>
<div class="pokemon-card">
<p id="pokemon-name">Discover your Pokémon!</p>
<img src="./img/poke-shadow.png" alt="" id="pokemon-image" />
<p id="pokemon-id"></p>
<div class="pokemon-types"></div>
<div class="pokemon-stats"></div>
</div>
<!-- Scripts -->
<script src="./app.js"></script>
<!-- Scripts -->
</body>
</html>