-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 925 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="./src/styles.css" />
</head>
<body>
<header>
<h1>🏠 Find your home</h1>
</header>
<div class="wrapper">
<div class="filters">
<input type="text" class="search-input" placeholder="🔎 Type to search" />
<select class="select" name="home">
<option value="All">All</option>
<option value="Flat">Flat</option>
<option value="House">House</option>
</select>
<div>
<label for="available">Show only Available </label>
<input type="checkbox" class="available-checkbox" name="checkbox" />
</div>
</div>
<div class="cards">
<!-- This is where the cards should go -->
</div>
</div>
<script src="src/index.js" type="module"></script>
</body>
</html>