-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
111 lines (109 loc) · 4.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>SHOPLANE - A Place For Shopping</title>
<link rel="stylesheet" href="./style.css" />
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="./slick-1.8.1/slick/slick.css" />
<link rel="stylesheet" type="text/css" href="./slick-1.8.1/slick/slick-theme.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
</head>
<body>
<div id="top-bar">
<div class="logo">
<a href="./index.html"><h4><span>SHOP</span>LANE</h4></a>
</div>
<ul class="nav-links">
<li><a href="./index.html">Home</a></li>
<li><a href="/index.html#clothing">Clothings</a></li>
<li><a href="/index.html#accessories">Accessories</a></li>
</ul>
<div class="icons">
<i class="fa fa-search"></i>
<div class="cart" id="cartIcon">
<a href="./checkout.html">
<i class="fa fa-shopping-cart">
<span id="cart-count">0</span>
</i>
</a>
</div>
<div class="profile">
<i class="fa-solid fa-user"></i>
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
</div>
<section id="product">
<div class="left-column">
<img id="productImg" src="./img/placeholder.jpg" alt="" />
</div>
<div class="right-column">
<div class="product-description">
<h1 id="name">Product Name</h1>
<h4 id="brand">Product Barnd</h4>
<h3>Price: Rs <span id="price"></h3>
<div class="description">
<h3>Description</h3>
<p id="description">
Product Description
</p>
</div>
<div class="product-preview">
<h3>Product Preview</h3>
<div class="previewImg">
<img id="img0" class="active" src="./img/placeholder.jpg" alt="" />
<img id="img1" src="./img/placeholder.jpg" alt="" />
<img id="img2" src="" alt="" />
<img id="img3" src="" alt="" />
<img id="img4" src="" alt="" />
<img id="img5" src="" alt="" />
</div>
</div>
</div>
<div class="btn">
<button id="add-to-cart">Add to Cart</button>
</div>
</div>
</section>
<footer><div>
<p class = "footer-heading">Online Store</p>
<a href="#clothes-card" class="footer-link">Men Clothing</a>
<a href="#clothes-card" class="footer-link">Women Clothing</a>
<a href="#accesorie-head" class="footer-link">Men Accessories</a>
<a href="#accesorie-head" class="footer-link">Women Accessories</a>
</div>
<div>
<p class = "footer-heading">Helpful Links</p>
<a href="#clothes-card" class="footer-link">Home</a>
<a href="#clothes-card" class="footer-link">About</a>
<a href="#accesorie-head" class="footer-link">Contact</a>
</div>
<div>
<p class = "footer-heading">Partners</p>
<a href="#clothes-card" class="footer-link">Zara</a>
<a href="#clothes-card" class="footer-link">Pantaloons</a>
<a href="#accesorie-head" class="footer-link">Levis</a>
<a href="#accesorie-head" class="footer-link">UCB</a>
<a href="#accesorie-head" class="footer-link">+ Many More</a>
</div>
<div>
<p class = "footer-heading">Address</p>
<a href="#clothes-card" class="footer-link">Building 101</a>
<a href="#clothes-card" class="footer-link">Central Avenue</a>
<a href="#accesorie-head" class="footer-link">LA - 902722</a>
<a href="#accesorie-head" class="footer-link">United States</a>
</div>
</footer>
<script type="text/javascript" src="./slick-1.8.1/slick/slick.min.js"></script>
<script src="./index.js"></script>
</body>
</html>