-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (94 loc) · 3.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | E-commerce product page</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<header>
<nav>
<h1>sneakers</h1>
<ul>
<li><a href="#">Collections</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="profile">
<div class="cart-container">
<img src="images/icon-cart.svg" alt="cart" class="cart" />
<div class="added-to-cart show"></div>
<div class="popup hide">
</div>
</div>
<img src="images/image-avatar.png" alt="image-avatar" class="avatar" />
</div>
</header>
<main>
<div class="images">
<div class="main-img">
<img src="images/image-product-1.jpg" alt="image-product-1" />
</div>
<div class="children-img">
<img
src="images/image-product-1-thumbnail.jpg"
alt="image-product-1-thumbnail"
/>
<img
src="images/image-product-2-thumbnail.jpg"
alt="image-product-2-thumbnail"
/>
<img
src="images/image-product-3-thumbnail.jpg"
alt="image-product-3-thumbnail"
/>
<img
src="images/image-product-4-thumbnail.jpg"
alt="image-product-4-thumbnail"
/>
</div>
</div>
<div class="description">
<h4>SNEAKER COMPANY</h4>
<h1>Full Limited Edition Sneakers</h1>
<p>
These low-profile sneakers are your perfect casual wear companion.
Featuring a durable rubber outer sole, they'll withstand everything
the weather can offer.
</p>
<div class="price">$125.00</div>
<div class="line-through">$250.00</div>
<div class="buttons">
<div class="minus-plus">
<img src="images/icon-minus.svg" alt="minus" class="minus" />
<span class="counter">0</span>
<img src="images/icon-plus.svg" alt="plus" class="plus" />
</div>
<button class="add-to-cart">
<svg width="22" height="20" xmlns="http://www.w3.org/2000/svg">
<path
d="M20.925 3.641H3.863L3.61.816A.896.896 0 0 0 2.717 0H.897a.896.896 0 1 0 0 1.792h1l1.031 11.483c.073.828.52 1.726 1.291 2.336C2.83 17.385 4.099 20 6.359 20c1.875 0 3.197-1.87 2.554-3.642h4.905c-.642 1.77.677 3.642 2.555 3.642a2.72 2.72 0 0 0 2.717-2.717 2.72 2.72 0 0 0-2.717-2.717H6.365c-.681 0-1.274-.41-1.53-1.009l14.321-.842a.896.896 0 0 0 .817-.677l1.821-7.283a.897.897 0 0 0-.87-1.114ZM6.358 18.208a.926.926 0 0 1 0-1.85.926.926 0 0 1 0 1.85Zm10.015 0a.926.926 0 0 1 0-1.85.926.926 0 0 1 0 1.85Zm2.021-7.243-13.8.81-.57-6.341h15.753l-1.383 5.53Z"
fill="#fff"
fill-rule="nonzero"
/>
</svg>
<span>Add to cart</span>
</button>
</div>
</div>
</main>
<script src="app.js"></script>
</body>
</html>