-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilterPage.html
78 lines (72 loc) · 2.61 KB
/
FilterPage.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
<html>
<head>
<title>Filter Page</title>
<link rel="stylesheet" href="./FilterPage.css" />
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>
<body>
<div class="header">
<div class="header-logo">
<b>e!</b>
</div>
<div style="float: right;">
<div class="login">Login</div>
<div class="account">Create an account</div>
</div>
</div>
<div class="main">
<!-- Title -->
<div class="heading">Breakfast Places in Mumbai</div>
<!-- 3 Boxes -->
<!-- Filter Block -->
<div class="filter-block" style="display: inline-block;">
</div>
<!-- Result Blocks -->
<div style="display: inline-block; vertical-align: top;">
<div class="item">
<div style="display: inline-block;">
<img class="image1" src="./Images/image1.png"/>
</div>
<div style="display: inline-block; vertical-align: top;">
<div class="t1">The Big Chill Cakery</div>
<div class="t2">FORT</div>
<div class="t3">Shop 1, Plot D, Samruddhi Complex, Chincholi …</div>
</div>
<div>
<table>
<tr style="text-align: left;">
<th>CUISINES</th>
<td>Bakery</td>
</tr>
<tr>
<th>COST FOR TWO</th>
<td>₹700</td>
</tr>
</table>
</div>
</div>
<div class="item">
<div style="display: inline-block;">
<img class="image1" src="./Images/image1.png"/>
</div>
<div style="display: inline-block; vertical-align: top;">
<div class="t1">The Big Chill Cakery</div>
<div class="t2">FORT</div>
<div class="t3">Shop 1, Plot D, Samruddhi Complex, Chincholi …</div>
</div>
<div>
<table>
<tr style="text-align: left;">
<th>CUISINES</th>
<td>Bakery</td>
</tr>
<tr>
<th>COST FOR TWO</th>
<td>₹700</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>