-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (89 loc) · 4.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<title>Form</title>
</head>
<body>
<form id="form" class="form">
<h1>REQUEST FOR BROKERAGE SERVICES</h1>
<h3>WE VALUE YOUR TIME AND HAVE MADE THIS FORM AS SUCCINCT AS POSSIBLE <br>ALONG WITH <br>RAPID CHECKBOXES, WE RESPECT YOUR PRIVACY AND NOTHING IS SHARED.</h3>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td>Client Name: <input type="text" required class="hat"></td>
</tr>
</table>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td>Client Address: <input type="text" required class="cat"></td>
</tr>
</table>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td><strong>City:</strong><input type="text" required class="benz"><strong>Zip:</strong><input type="number" required class="range"><br></td>
</tr>
</table>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td>Contact Name: <input type="checkbox">Same as Above or:</td>
</tr>
</table>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td>Contact Phone: <input type="number" required class="set"<td>Email: <input type="email" required class="win"</td> </td>
</tr>
</table>
<h2>PROPERTY INFORMATION: <br><input type="checkbox">SAME AS ABOVE<br>Subject Property Address:</h2>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td><strong>City:</strong><input type="text" required class="owl"><strong>Zip:</strong><input type="number"class="fox"><br></td><br>
</tr>
</table>
<strong>Property Type: Single Family</strong><input type="checkbox">
<strong>PUD</strong><input type="checkbox">
<strong>Condo</strong><input type="checkbox">
<strong>Duplex</strong><input type="checkbox">
<strong>Triplex</strong><input type="checkbox">
<strong>4-Units</strong><input type="checkbox">
<strong>Multi-Family</strong><input type="checkbox"><br>
<strong>Hotel|Motel</strong><input type="checkbox">
<strong>Retail</strong><input type="checkbox">
<strong>Office</strong><input type="checkbox">
<strong>Industry</strong><input type="checkbox">
<strong>Land</strong><input type="checkbox">
<strong>Others</strong><input type="checkbox">
<br />
<br />
<strong>Estimated fair market value, if Known: $</strong>
<br>
<br>
<strong>SUBJECT PROPERTY DESCRIPTION (If Known, land size, building size, special<br> features, remodel info, or other details):</strong>
<br>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td><input type="text"class="gwagon"></td>
</tr>
</table>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td><input type="text"class="pet"></td>
</tr>
</table>
<table border="1" bordercolor="black"width="750"height="80">
<tr>
<td><input type="text"class="pen"></td>
</tr>
</table>
<br>
<strong>Please check documents that can furnished to the broker:</strong><br>
<strong>Title Report</strong><input type="checkbox"><strong>As-Built Plan</strong><input type="checkbox">
<strong>Financial Statements</strong><input type="checkbox"><strong>Phase 1 Study</strong><input type="checkbox"><br>
<strong>Other (describe)</strong><input type="checkbox">
<br><br>
<button style="background-color: green">Submit</button>
</form>
<script src="js/script.js"></script>
</body>
</html>