-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-detail.html
37 lines (37 loc) · 1.48 KB
/
product-detail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yard Sale product details</title>
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./Platzi_YardSale_Logos/favicon_yard_sale.svg" type="image/x-icon">
</head>
<body>
<aside class="product-detail">
<div class="product-detail-close">
<img src="./icons/icon_close.png" alt="close">
</div>
<img class="product-detail-img" src="./logos/coolboard.webp" alt="coolboard">
<div class="points">
<li class="active-point"></li>
<li></li>
<li></li>
</div>
<div class="product-info product-detail-info">
<p>$ 160.00</p>
<p>Coolboard</p>
<p class="product-description">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Cupiditate dignissimos eius quibusdam alias unde reprehenderit, quisquam molestias dolor cumque nam?</p>
<div class="primary-button add-to-cart-button">
<img src="./icons/bt_add_to_cart.svg" alt="add to cart">
Add to cart
</div>
</div>
</aside>
</body>
</html>