-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (70 loc) · 2.38 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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">
<title>Pokemons</title>
<link rel="icon" href="images/favicon-16x16.png">
<link rel="stylesheet" href="css/style.css">
<script defer src="js/script.js"></script>
<style>
@font-face {
font-family: 'Pokemon';
src: url('fonts/Pokemon Solid.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.left > h1{
font-family: 'Pokemon';
font-size: 2em;
font-weight: normal;
}
.search > h1{
font-family: 'Pokemon';
font-size: 2em;
font-weight: normal;
}
</style>
</head>
<body>
<div class="main-pokedex">
<div class="left">
<img src="images/pokemon-png-logo.webp" width="60%" height="25%" id="">
<h1>first generation </h1>
</div>
<div class="right">
<div class="pokedex">
<div class="search">
<h1>Pokedex</h1>
<img src="images/pokedex.png" class="left-image" width="60" height="60">
</div>
<div class="search2">
<form class="form">
<input
type="search"
class="input_pokemon"
placeholder="Name or ID"
required
/>
</form>
</div>
<div class="show">
<img src="#" alt="pokemon" class="pokemon_image" width="80%" height="45%">
<h1>
<span class="pokemon_number"></span>
<span class="pokemon_name"></span>
</h1>
<div class="features">
<p>
<span class="pokemon_type"></span>
</p>
</div>
</div>
</div>
</div>
</div>
<main>
</main>
</body>
</html>