This page was made as a personal project in connection with an educational exercise.
This is NOT the official site of the company or brand identified on the page. The creator of this page is NOT affiliated with the company or brand in any way. DO NOT enter any personal information (such as logins, passwords or credit card numbers) on this site.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproductspage.html
129 lines (117 loc) · 5.47 KB
/
productspage.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style/productspage.css">
<link rel="stylesheet" href="./style/footer.css">
<link rel="stylesheet" href="./style/index1.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Buy Men's T-shirts Online at India's Best Fashion Store | Myntra</title>
</head>
<body>
<div id="navbar">
<!-- NAVBAR SHOULD BE HERE -->
</div>
<div id="sub-nav">
<!-- <div id="filter-head">
<p style="margin-left: 15px;">Home / Men's Clothing / <span style="font-weight:bold;">T-shirt</span></p>
<p style="margin-top:-5px ;margin-left: 15px;">Men's Tshirt - 81543 items</p>
<h4 style="margin-top:-5px; margin-left: 15px;">FILTERS</h4></div> -->
<div id="cat-sort">
<div id="cat">
<select class="min-fil">Bundles
<option value="">Bundles</option>
<option value="">Single styles</option>
</select>
<select style="margin-left: 15px;" class="min-fil">Country of origin
<option value="">Country of origin</option>
<option value="">All Countries</option>
<option value="">India</option></select>
<select id="size" style=" margin-left: 15px;" class="min-fil" onchange="size1Func()">Size
<option value="">Size</option>
<option value="small">Small</option>
<option value="medium">Medium</option>
<option value="large">Large</option>
<option value="xl">XL</option>
<option value="xxl">XXL</option>
</select>
</div>
<div id="sort">
<select name="sort" id="sort1" onchange="sortFunc()">
<option value="">Sort by: Recommended</option>
<option value="dec">Price: High to Low</option>
<option value="asc">Price: Low to High</option>
<option value="pop">Popularity</option>
</select>
</div>
</div>
</div>
<div id="filters-products">
<div id="filters">
<div id="categ">
<h4 style="margin-left: 15px;">CATEGORIES</h4>
<input type="checkbox">T-Shirt </br>
<input type="checkbox">Loung T-Shirt
</div>
<div id="brand">
<h4 style="margin-left: 15px;">BRAND</h4>
<input type="checkbox">Roadster</br>
<input type="checkbox">Kalt</br>
<input type="checkbox">Puma</br>
<input type="checkbox">WROGN</br>
<input type="checkbox">QUANCIOUS</br>
<input type="checkbox">Being Human</br>
<input type="checkbox">Friskers</br>
</div>
<div id="price4">
<h4 style="margin-left: 15px;">PRICE</h4>
<input id="p1" onchange="priceFunc()" type="checkbox">Rs.301 - Rs.500</br>
<input id="p2" onchange="priceFunc()" type="checkbox">Rs.501 - Rs.750</br>
<input id="p3" onchange="priceFunc()" type="checkbox">Rs.751 - Rs.999</br>
<input id="p4" onchange="priceFunc()" type="checkbox">Rs.1000 - Rs.5000</br>
</div>
<div id="discount">
<h4 style="margin-left: 15px;">DISCOUNT</h4>
<input type="checkbox">10% Discount</br>
<input type="checkbox">20% Discount</br>
<input type="checkbox">30% Discount</br>
<input type="checkbox">40% Discount</br>
<input type="checkbox">50% Discount</br>
<input type="checkbox">60% Discount</br>
<input type="checkbox">70% Discount</br>
<input type="checkbox">80% Discount</br>
</div>
</div>
<div id="products">
</div>
</div>
<div id="pagination">
<button id="previous">< Previous</button>
<div id="pages">
<button>1</button><button>2</button><button>3</button><button>4</button><button>5</button><button>6</button><button>7</button><button>8</button><button>9</button>
</div>
<button id="next"> Next ></button>
</div>
<!-- footer -->
<div id="div" class="div"></div>
<!-- bottom TEXT PART -->
<div id="oo" class="oo"></div>
</body>
</html>
<script src="./js/productspage.js"></script>
<script type="module">
/*IMPORTING THE FOOTER*/
import footer1 from "../components/footer1.js";
let div1 = document.getElementById("div");
div1.innerHTML = footer1();
import footer from "../components/footer2.js"
let div2 = document.getElementById("oo");
div2.innerHTML = footer();
import navbar from "../components/index1.js"
let div3 = document.getElementById("navbar");
div3.innerHTML = navbar();
</script>