-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (80 loc) · 2.8 KB
/
index.html
File metadata and controls
89 lines (80 loc) · 2.8 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!-- 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=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<!-- remix icon -->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!-- css -->
<link rel="stylesheet" href="/style.css">
<title>Frontend Mentor | E-commerce product page</title>
</head>
<body>
<header>
<div class="nav-1">
<img src="./images/logo.svg" alt="" id="logo">
<div class="text">
<p>Collections</p>
<p>Men</p>
<p>Women</p>
<p>About</p>
<p>Contact</p>
</div>
</div>
<div class="nav-2">
<img src="./images/icon-cart.svg" alt="" id="cart-icon">
<img src="./images/image-avatar.png" alt="" id="avatar">
</div>
</header>
<hr>
<main>
<div class="sec-1">
<div class="sec-1-a">
<img src="./images/image-product-1.jpg" alt="" id="pic1">
</div>
<div class="sec-1-b">
<img src="./images/image-product-1-thumbnail.jpg" alt="" id="product-1">
<img src="/images/image-product-2-thumbnail.jpg" alt="" id="product-1">
<img src="./images/image-product-3-thumbnail.jpg" alt="" id="product-1" >
<img src="./images/image-product-4-thumbnail.jpg" alt="" id="product-1">
</div>
</div>
<div class="sec-2">
<h3>Sneaker Company</h3>
<h1>Fall Limited Edition <span>Sneakers</span></h1>
<p id="sec-2-text">
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="num">
<div class="num-1">
<h4>$125.00</h4>
<p>50%</p>
</div>
<div class="num-2">
<p>$250.00</p>
</div>
</div>
<div class="cart-section">
<div class="sign-sec">
<div class="sign sign1" id="sign-1">-</div>
<div class="sign sign2" id="sign-2">0</div>
<div class="sign sign3" id="sign-3">+</div>
</div>
<div class="button" id="cartButton">
<i class="ri-shopping-cart-2-line"></i>
<p>Add to cart</p>
</div>
</div>
</div>
</main>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://twitter.com/phavourshelby">Phavour-codes</a>.
</div>
</body>
</html>