-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (104 loc) · 4.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<title>Real estate homework</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="main.js"></script>
</head>
<body>
<div class="row">
<section id="agent-wrapper" class="one-quarter-left">
<div class="padding">
<h2>Selected agent</h2>
<label>Agent</label>
<select id="Agent" name="Agent">
<option value="MA">Josh Estrela</option>
</select>
</div>
</section>
<section id="property-wrapper" class="three-quarter-right">
<main>
<section id="property-image-wrapper">
<div>
<img id="property-image" class="center" width="480px" src="images/image1.jpg" />
</div>
<div id="property-image-controls" class="center">
<button onclick="goToPreviousImage()">Previous</button>
<button onclick="goToNextImage()">Next</button>
</div>
</section>
<section id="property-form-wrapper padding">
<form id="property-form">
<h3>Property Address</h3>
<div>
<label>Street</label>
<input type="text" id="Street" name="Street" size="100">
</div>
<div>
<label>City</label>
<input type="text" id="City" name="City" size="50">
</div>
<div>
<label>State</label>
<select id="state" name="state">
<option value="MA">Massachusetts</option>
</select>
</div>
<div>
<label>Zip</label>
<input type="text" id="Zip" name="Zip" size="10">
</div>
<div>
<h3>Property Details</h3>
<div>
<label>Price</label>
<input type="number" id="Price" name="Price" size="10">
</div>
<div>
<label>Property Type</label>
<select id="PropertyType" name="PropertyType">
<option value="single">Single family</option>
</select>
</div>
<div>
<label>Number of Beds</label>
<select id="Beds" name="Beds">
<option value="1">1</option>
</select>
</div>
<div>
<label>Number of Baths</label>
<select id="Baths" name="Baths">
<option value="1">1</option>
</select>
</div>
<div>
<label>Lot Size</label>
<input type="number" id="LotSize" name="LotSize" size="5">
</div>
<div>
<label>Year Built</label>
<input type="number" id="YearBuilt" name="YearBuilt" size="4">
</div>
<div>
<label>Heating</label>
<select id="Heating" name="Heating">
<option value="gas">Gas</option>
</select>
</div>
<div>
<label>Cooling</label>
<select id="Cooling" name="Cooling">
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
</div>
</div>
<button type="button">Submit</button>
</form>
</section>
</main>
</section>
</div>
</body>
</html>