-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (93 loc) · 2.83 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
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pokenzie</title>
<!-- STYLES -->
<link rel="stylesheet" href="./src/styles/globalStyles.css" />
<link rel="stylesheet" href="./src/styles/index.css" />
<!-- SCRIPTS -->
<script type="module" src="./src/scripts/index.js" defer></script>
<!-- ICONS -->
<script
src="https://kit.fontawesome.com/6b9bdfe310.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- CABEÇALHO -->
<header class="header">
<h1 class="header__title">PoKenzie</h1>
<button class="header__theme-btn"></button>
</header>
<!-- CONTEÚDO PRINCIPAL -->
<main>
<form class="filter__form">
<label class="filter__label" for="attack__range-filter"
>Filtre pelo Ataque menor ou igual a <span>100</span></label
>
<input
class="filter__input"
type="range"
id="attack__range-filter"
min="0"
max="100"
value="100"
/>
<label class="filter__label" for="defense__range-filter"
>Filtre pelo Defesa menor ou igual a <span>100</span></label
>
<input
class="filter__input"
type="range"
id="defense__range-filter"
min="0"
max="100"
value="100"
/>
<label class="filter__label" for="speed__range-filter"
>Filtre pelo Velocidade menor ou igual a <span>100</span></label
>
<input
class="filter__input"
type="range"
id="speed__range-filter"
min="0"
max="100"
value="100"
/>
</form>
<ul class="cards">
<!-- <li class="card">
<i class="card__fav fa-regular fa-star"></i>
<p class="card__hp">
<span>HP</span>
40
</p>
<img
class="card__image"
src="./src/assets/imgs/bulbassaur.svg"
alt="Imagem do Pokemon Bulbasaur"
/>
<h2 class="card__name">Bulbasaur</h2>
<small class="card__type">Grass</small>
<ul class="card__stats">
<li class="card__stat">
<h3 class="stat__value">65</h3>
<p class="stat__type">ATQ</p>
</li>
<li class="card__stat">
<h3 class="stat__value">50</h3>
<p class="stat__type">DEF</p>
</li>
<li class="card__stat">
<h3 class="stat__value">40</h3>
<p class="stat__type">VEL</p>
</li>
</ul>
</li> -->
</ul>
</main>
</body>
</html>