-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 2.08 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="./style/style.css">
<title>Pokédex</title>
</head>
<body data-bs-theme="dark">
<div class="container d-flex align-items-center justify-content-center">
<div class="content">
<div class="pokedex-container container-fluid bg-danger d-flex align-items-center flex-column p-5 rounded gap-3">
<div class="poke-container border border-black d-flex align-items-center flex-column gap-3">
<h1>Pokédex</h1>
<form class="search-pokemon">
<input type="text" class="input-search" placeholder="Digite um ID ou Nome">
</form>
<img class="img-poke" src="" alt="" id="poke-img">
<div class="poke-info">
<span class="poke-id" id="poke-id"></span>
<span id="poke-name"></span>
<div class="type-pokemon d-flex gap-3">
<h2>
<span class="badge bg-primary-subtle" id="first-badge">
<span id="first-type-poke"></span>
</span>
</h2>
<h2>
<span class="badge bg-primary-subtle" id="second-badge">
<span id="second-type-poke"></span>
</span>
</h2>
</div>
</div>
<div class="line"></div>
<div class="stats-poke"></div>
</div>
</div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>