-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
36 lines (36 loc) · 1.51 KB
/
product.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles/product.css">
<link rel="stylesheet" href="./styles/root.css">
<!--Google fonts-->
<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=Cantarell:ital@1&family=Quicksand:wght@300;500;700&display=swap" rel="stylesheet">
<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>ShoeStore</title>
</head>
<body>
<aside class="product-detail">
<div class="product-detail-close">
<img src="./assets/shoeStore_icons/icon_close.png" alt="close">
</div>
<img src="./assets/images/addidas-continental.jpeg" alt="shoes">
<div class="product-info">
<p>$120</p>
<p>Nike Legend</p>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Impedit sapiente nihil
totam explicabo suscipit ut odit, recusandae, velit obcaecati dolorem nesciunt porro
perferendis qui praesentium cumque, id incidunt consequuntur non.
</p>
<button class="primary-button add-to-car-button">
<img src="./assets/shoeStore_icons/bt_add_to_cart.svg" alt="add to car">
Add to car
</button>
</div>
</aside>
</body>
</html>