forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Product.html
97 lines (90 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flipkart</title>
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="./product.css" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<style>
* {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<!-- inline stylesheet -->
<!-- internal css -->
<!-- external css -->
<!-- id, class -->
<div id="container"></div>
<!-- Navbar -->
<!-- list of categories -->
<section id="products">
<div style="width: 25%; border: 1px solid red; height: 100vh">
<p>Filters</p>
</div>
<div style="width: 75%; border: 1px solid black">
<div style="display: flex;" id="topmenu">
<span> Sort By </span>
<span> Popularity </span>
<span> Price -- Low to High </span>
<span> Price -- High to Low </span>
</div>
<div id="collection"></div>
</div>
</section>
<section id="footer">
<div>
<li class="heading">About</li>
<li>About Us</li>
<li>Career</li>
<li>Flipkart Stories</li>
<li>Cleartrip</li>
</div>
<div>
<li class="heading">Help</li>
<li>About Us</li>
<li>Career</li>
<li>Flipkart Stories</li>
<li>Cleartrip</li>
</div>
<div>
<li class="heading">CONUSMER POLICY</li>
<li>About Us</li>
<li>Career</li>
<li>Flipkart Stories</li>
<li>Cleartrip</li>
</div>
<div>
<li class="heading">Social</li>
<li>Instagram</li>
<li>LinkedIn</li>
<li>Facebook</li>
<li>X</li>
</div>
<div>
<li class="heading">Address</li>
<li>About Us</li>
<li>Career</li>
<li>Flipkart Stories</li>
<li>Cleartrip</li>
</div>
<div>
<li class="heading">Contact us</li>
<li>About Us</li>
<li>Career</li>
<li>Flipkart Stories</li>
<li>Cleartrip</li>
</div>
</section>
</body>
</html>
<script>
$(function () {
$("#container").load("./Navabar.html");
});
</script>
<script src="./Product.js"></script>