-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlistings.html
More file actions
36 lines (32 loc) · 946 Bytes
/
listings.html
File metadata and controls
36 lines (32 loc) · 946 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>All Listings</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<section class="section" id="all-listings">
<div class="container">
<div class="section-head">
<h2>All properties</h2>
<a class="link" href="index.html">Back home →</a>
</div>
<div class="filters">
<input id="q" placeholder="Search (city, title)..." />
<select id="status">
<option value="">All</option>
<option value="sale">Sale</option>
<option value="rent">Rent</option>
</select>
<select id="city">
<option value="">Any city</option>
</select>
</div>
<div class="grid3" id="allGrid"></div>
</div>
</section>
<script src="listings-page.js"></script>
</body>
</html>