-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (64 loc) · 2.08 KB
/
index.html
File metadata and controls
71 lines (64 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nook Property - House Prediction</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="navbar-container">
<a href="#" class="navbar-brand">
<img src="logo.png" alt="Logo" class="logo" />
<h4>Nook Property - House Prediction</h4>
</a>
</div>
</nav>
<div class="background-container">
<!-- Card Form -->
<div class="form-card">
<form>
<!-- Horizontal Form Layout -->
<div class="form-group">
<div>
<label for="square-feet">Square Feet</label>
<input
type="text"
id="square-feet"
placeholder="Ex : 2126"
required
/>
</div>
<div>
<label for="bedrooms">Number of Bedrooms</label>
<input type="text" id="bedrooms" placeholder="Ex : 4" required />
</div>
<div>
<label for="bathrooms">Number of Bathrooms</label>
<input type="text" id="bathrooms" placeholder="Ex : 1" required />
</div>
</div>
<div class="form-group">
<div>
<label for="neighborhood">Neighborhood</label>
<select id="neighborhood">
<option value="">--Select Neighborhood--</option>
<option value="urban">Urban</option>
<option value="suburban">Suburban</option>
<option value="rural">Rural</option>
</select>
</div>
<div>
<label for="year-built">Year Built</label>
<input type="date" id="year-built" />
</div>
</div>
<button type="submit" class="predict-btn">Predict</button>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>