-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuy.html
152 lines (120 loc) · 5.19 KB
/
buy.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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">
<title>buy page</title>
<link rel="stylesheet" href="buystyles.css">
</head>
<body>
<div class="navcontainer">
<div class="logo">
<img src="img/logo-demo.png" alt="" width="150px">
</div>
<div class="ab">
<div class="home">
<a href="index.html" style="color: black;text-decoration: none;">Home</a>
</div>
<div class="contact">
<a href="index.html#contact" style="color: black;text-decoration: none;">Contact Us</a>
</div>
<div class="about">
<a href="about.html" style="color: black;text-decoration: none;">About</a>
</div>
</div>
<div class="login">
<button id="loginbtn" onclick="window.location.href='login page/#.html';">login</button>
</div>
</div>
<div class="conatiner" style="display:flex;">
<div class="filter">
<div class="cat">
<p class="titles">Filter</p>
<p class="subtitles">CATEGORIES</p>
<p class="subtitles">Books</p>
<div class="options">
<input type="checkbox">
<label for="book1"> Audio Books</label><br>
<input type="checkbox" >
<label for="book2"> Lifestyle, Hobby and Social</label><br>
<input type="checkbox" >
<label for="book3"> Test Preparation Books</label><br>
<input type="checkbox" >
<label for="book4"> History</label>
</div>
<p class="subtitles">Language</p>
<div class="options">
<input type="checkbox">
<label for="lang1">English</label><br>
<input type="checkbox" >
<label for="lang2">Hindi</label><br>
<input type="checkbox" >
<label for="lang3">Marathi</label><br>
<input type="checkbox" >
<label for="lang4">Sanskrit</label>
</div>
<p style="margin-bottom: 0px;" class="subtitles">Price</p>
<div class="range">
<div style="margin:auto ;">
<p>Min</p>
<input type="text" class="box">
</div>
<div>
<p>Max</p>
<input type="text" class="box">
</div>
</div>
</div>
</div>
<div class="all">
<div class="menu" style="display: flex;">
<div class="product">
<div class="box1">
<img src="img/download-removebg-preview.png" alt="">
<p class="heading">The subtel art of not giving fuck</p>
<p class="price">Rs250</p>
</div>
</div>
<div class="product">
<div class="box1">
<img src="img/download-removebg-preview.png" alt="">
<p class="heading">Think And Grow Rich</p>
<p class="price">Rs300</p>
</div>
</div>
<div class="product">
<div class="box1">
<img src="img/download-removebg-preview.png" alt="">
<p class="heading">The sutle art of not giving fuck</p>
<p class="price">Rs250</p>
</div>
</div>
</div>
<div class="menu" style="display: flex;">
<div class="product">
<div class="box1">
<img src="img/download-removebg-preview.png" alt="">
<p class="heading">The sutle art of not giving fuck</p>
<p class="price">Rs250</p>
</div>
</div>
<div class="product">
<div class="box1">
<img src="img/download-removebg-preview.png" alt="">
<p class="heading">The sutle art of not giving fuck</p>
<p class="price">Rs250</p>
</div>
</div>
<div class="product">
<div class="box1">
<img src="img/download-removebg-preview.png" alt="">
<p class="heading">The sutle art of not giving fuck</p>
<p class="price">Rs250</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>