-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon"
href="https://imagensemoldes.com.br/wp-content/uploads/2020/04/Pokebola-Pok%C3%A9mon-PNG-1024x1022.png">
<link rel="stylesheet" href="./css/style.css">
<script defer src="./js/script.js"></script>
<title>PokeBase By Thomas</title>
</head>
<body>
<header>
<div class="logo-text">
<img src="https://imagensemoldes.com.br/wp-content/uploads/2020/04/Pokebola-Pok%C3%A9mon-PNG-1024x1022.png"
alt="">
<h1>PokeBase ©</h1>
</div>
</header>
<main>
<div class="content">
<img src="#" alt="pokemon" class="pokemon__image">
<h1 class="pokemon__data">
<span class="pokeNumber"></span> -
<span class="pokeName"></span>
</h1>
<form class="form">
<input type="search" class="input__search" placeholder="Nome ou ID" required />
</form>
<div class="buttons">
<button class="button btn-prev"><</button>
<button class="button btn-next">></button>
</div>
</div>
</main>
<footer>
<p>Projeto exclusivamente criado para a Copybase</p>
<p>Thomas Bastos | Desenvolvedor Front-end</p>
</footer>
</body>
</html>