-
Notifications
You must be signed in to change notification settings - Fork 0
/
kidsproDetail.html
140 lines (122 loc) · 5.07 KB
/
kidsproDetail.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="./styles/wproDetail.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<title>product details</title>
<!-- <link rel="stylesheet" href="./cart-page/cart.css"> -->
<!-- navbar css-->
<link rel="stylesheet" href="./navbar/navbar.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/ac04af6655.js" crossorigin="anonymous"></script>
<!-- fotter -->
<link rel="stylesheet" href="../footer/fw17_0093foot.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<script src="https://kit.fontawesome.com/ac04af6655.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="navbar"></div>
<div id="details"></div>
<div id="static_detail">
<div>THE DETAILS</div>
<div>DELIVERY & RETURN</div>
</div>
<hr>
<div id="prodesc">
<div id="detailDescription"></div>
<div id="staticDesc">
<p>Composition</p>
<p>Outer:Calf Leather 100%</p>
<p>Lining: Polyester 90%, Calf Leather 10%</p>
<p>Brand style ID: BB7338AW576</p>
</div>
<div id="imgDesc"></div>
</div>
<!-- Recommandation -->
<div id="rec">
<p style="font-size: 23px;">Recommendation</p>
<button id="shop">Shop Now</button>
</div>
<div class="wrapper">
<figure>
<div class="hover-animation">
<img src="https://cdn-images.farfetch-contents.com/17/64/48/03/17644803_37220632_1000.jpg" alt=""
class="img-back">
<img src=" https://cdn-images.farfetch-contents.com/17/64/48/03/17644803_37218778_1000.jpg" alt=""
class="img-front">
</div>
<figcaption>
<h3>Valentino Garavani</h3>
<p>Vlogo plaque bag set</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img src="https://cdn-images.farfetch-contents.com/18/17/80/14/18178014_38606644_1000.jpg" alt=""
class="img-back">
<img src="https://cdn-images.farfetch-contents.com/18/17/80/14/18178014_38608964_1000.jpg" alt=""
class="img-front">
</div>
<figcaption>
<h3>Giorgio Armani</h3>
<p>tulle Scarf cape</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img src="https://cdn-images.farfetch-contents.com/17/38/08/00/17380800_36286972_1000.jpg" alt=""
class="img-back">
<img src="https://cdn-images.farfetch-contents.com/17/38/08/00/17380800_36286959_1000.jpg" alt=""
class="img-front">
</div>
<figcaption>
<h3>Rejina Pyo</h3>
<p>Jamilla side-pocket skirt</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img src="https://cdn-images.farfetch-contents.com/17/73/50/65/17735065_37757329_1000.jpg" alt=""
class="img-back">
<img src="https://cdn-images.farfetch-contents.com/17/73/50/65/17735065_37758056_1000.jpg" alt=""
class="img-front">
</div>
<figcaption>
<h3>Balenciaga</h3>
<p>The Chain Cassette shoulder bag
</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img src="https://cdn-images.farfetch-contents.com/17/64/36/08/17643608_37204692_1000.jpg" alt=""
class="img-back">
<img src="https://cdn-images.farfetch-contents.com/17/64/36/08/17643608_37204688_1000.jpg" alt=""
class="img-front">
</div>
<figcaption>
<h3>MACH & MACH</h3>
<p>crystal-embellished pumps</p>
</figcaption>
</figure>
</div>
<div id="footer"></div>
</body>
</html>
<script src="./scripts/kidsproDetail.js"></script>
<!-- navbar -->
<script type="module">
import navbar from "./navbar/navbar.js"
document.querySelector("#navbar").innerHTML = navbar()
</script>
<!-- footer -->
<script type="module">
import footer from "../footer/fw17_0093foot.js"
document.querySelector("#footer").innerHTML = footer()
</script>