-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<title>Pokedex</title>
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./index.page.css" />
<link rel="stylesheet" href="./components/card/card.component.css" />
</head>
<body>
<main class="layout">
<header class="layout__header">
<h1 class="layout__header__title">Pokedex</h1>
</header>
<section class="layout__body">
<div class="cards-collection">
<div class="cards-collection__header">
<h2 class="cards-collection__header__title">Cards collection</h2>
</div>
<div class="cards-collection__body">
<a href="./details.html">
<div class="card">
<div class="card__header">
<h1 class="card__header__title">Charizard</h1>
<p class="card__header__subtitle">120 HP</p>
</div>
<div class="card__body">
<div class="card__body__illustration">
<img src="./assets/images/charizard.png" />
</div>
</div>
<div class="card__footer">
<div class="card__footer__prices-information">
<p class="card__footer__prices-information__average-price">2078 $</p>
<p class="card__footer__prices-information__updated-date">05/10/2024</p>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="wishlist">
<div class="wishlist__header">
<h2 class="wishlist__header__title">Wishlist</h2>
</div>
<div class="wishlist__body"></div>
</div>
</section>
</main>
</body>
</html>