-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (60 loc) · 1.79 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./src/style.css" />
<title>Rent Estimator</title>
</head>
<body>
<h1>Rent Estimator</h1>
<div id="app">
<div id="searchBar">
<form class="example">
<select id="property" name="dropdown1">
<option value="Single Family">Single Family</option>
<option value="Condo">Condo</option>
<option value="Townhouse">Townhouse</option>
<option value="Manufactured">Manufactured</option>
<option value="Duplex-Triplex">Duplex-Triplex</option>
<option value="Apartment">Apartment</option>
</select>
<input
type="number"
id="bedroom"
name="number"
min="1"
max="10"
placeholder="# of bedrooms"
/>
<input
type="number"
id="bathroom"
name="number"
min="1"
max="10"
placeholder="# of bathrooms"
/>
<input
type="text"
placeholder="Enter Zip Code"
name="search"
id="searchField"
required
title="Please enter a zipcode"
/>
<button type="submit" id="searchBtn">
<i class="fa fa-search"></i>
</button>
</form>
</div>
</div>
<div id="showAvgRent"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>