-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
75 lines (74 loc) · 3.07 KB
/
detail.html
File metadata and controls
75 lines (74 loc) · 3.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokemon Detail</title>
<link rel = "stylesheet" href = "style.css" />
<script src = "./pokemon-detail.js" defer></script>
</head>
<body>
<main class = "detail-main main">
<header class = "header">
<div class = "headre-wrapper">
<div class = "header-wrap">
<a href = "./index.html" class = "back-btn-wrap">
<img src = './assets/back-to-home.svg' alt = "back to home"
class = "back-btn" id = "back-btn"/>
</a>
<div class = "name-wrap">
<h1 class = "name"></h1>
</div>
</div>
<div class = "pokemon-id-wrap">
<p class = "body2-fonts"></p>
</div>
</div>
</header>
<div class = "featured-img">
<a href = "#" class = "arrow left-arrow" id = "leftArrow">
<img src = "./assets/chevron_left.svg" alt = "back"/>
</a>
<div class = "detail-img-wrapper">
<img src = "" alt = "" />
</div>
<a href = "#" class = "arrow right-arrow" id = "rightArrow">
<img src = "./assets/chevron_right.svg" alt = "forward" />
</a>
</div>
<div class = "detail-card-detail-wrapper">
<div class = "power-wrapper">
<p class = "body3-fonts type grass"></p>
<p class = "body3-fonts type poison"></p>
</div>
<p class = "body2-fonts about-text"></p>
<div class = "pokemon-detail-wrapper">
<div class = "pokemon-detail-wrap">
<div class = "pokemon-detail">
<img src = "./assets/weight.svg" alt = "weight" />
<p class = "body3-fonts weight"></p>
</div>
<p class = "caption-fonts"> Weight </p>
</div>
<div class = "pokemon-detail-wrap">
<div class = "pokemon-detail">
<img src = "./assets/height.svg" alt = "weight" class = "straighten" />
<p class = "body3-fonts height"></p>
</div>
<p class = "caption-fonts"> height </p>
</div>
<div class = "pokemon-detail-wrap">
<div class = "pokemon-detail move">
<p class = "body3-fonts"> Move </p>
</div>
</div>
<p class = "body3-fonts pokemon-description"></p>
<p class = "body2-fonts about-text"> Base Stats </p>
<p class="body2-fonts about-text">Base Stats</p>
<div class="stats-wrapper"></div>
</div>
</div>
<img src = "./assets/pokedex.svg" alt = "pokedex" class = "detail-bg" />
</main>
</body>
</html>