-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhousing-main.html
166 lines (162 loc) · 4.94 KB
/
housing-main.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
craigslist-housing
</title>
<link rel="stylesheet" type="text/css" href="styles\styles.css">
</head>
<body>
<div class="website-header website-header-text">
<a href='http://paulinalevit.me'>Back to paulinalevit.me!</a>
</div>
<div class="header-cont">
<div class="header">
<div class="header-text"> <a href="craigslist.html">craigslist</a></div>
<div class="account"> <a href="">[post]</a> <a href="">[account]</a></div>
<!-- <div class="account"> <a href="">[account]</a> </div> -->
</div>
<nav class="city-navigation">
<a class="nav-item" href="">
NYC
</a>
<a class="nav-item nav-in-use" href="">
Brooklyn
</a>
<a class="nav-item" href="">
Staten Island
</a>
<a class="nav-item" href="">
Manhattan
</a>
<a class="nav-item" href="">
Queens
</a>
<a class="nav-item" href="">
Bronx
</a>
</nav>
</div>
<div class="search-section-page">
<input type="text" placeholder="Search...">
<form action="">
<select name="categories">
<option value="community">community</option>
<option value="events">events</option>
<option value="gigs">gigs</option>
<option value="housing" selected>housing</option>
<option value="jobs">jobs</option>
<option value="personals">personals</option>
<option value="resumes">resumes</option>
<option value="for sale">for sale</option>
<option value="services">services</option>
</select>
</form>
</div>
<div class="container2">
<div class="sub-container-left">
<h2> categories </h2>
<br>
<h5>apartments:</h5>
<form>
<h4>
<input type="checkbox">broker fee<br>
<input type="checkbox">no broker fee<br>
<input type="checkbox">by owner<br>
<input type="checkbox">registration fee<br>
<input type="checkbox">wanted<br><br>
<input type="checkbox">housing swap<br>
<input type="checkbox">office & commercial<br>
<input type="checkbox">parking & storage<br>
<input type="checkbox">real estate for sale<br>
<input type="checkbox">real estate wanted<br>
<input type="checkbox">room/share<br>
<input type="checkbox">room/share wanted<br>
<input type="checkbox">sublet/temporary<br>
<input type="checkbox">sublet/temporary wanted<br>
<input type="checkbox">vacation rentals<br>
<input type="checkbox">select all
</h4>
</form>
</div>
<div class="sub-container-mid">
<h2> pets </h2>
<form>
<h4>
<input type="checkbox">dogs<br>
<input type="checkbox">cats<br>
</h4>
</form>
<br>
<h2> housing type </h2>
<form>
<select name="categories">
<option>apartment</option>
<option>condo</option>
<option>cottage/cabin</option>
<option>duplex</option>
<option>flat</option>
<option>house</option>
<option>in-law</option>
<option>loft</option>
<option>townhouse</option>
<option>manufactured</option>
<option>assisted living</option>
<option>land</option>
<option>select all</option>
</select>
</form>
<h2> bedrooms </h2>
<form>
<select name="bedrooms">
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7+</option>
</select>
</form>
<h2> bathrooms</h2>
<form>
<select name="bathrooms">
<option>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7+</option>
</select>
</form>
<br>
<input type="text" placeholder="min $$$">
<input type="text" class="text" placeholder="max $$$">
<input type="text" placeholder="min sq ft">
<input type="text" placeholder="max sq ft">
</div>
<div class="sub-container-right">
<h2> <center>sort by </center></h2>
<nav class="categories-pt-2">
<ul>
<li><a class="category-pt-2 nav-in-use" href="">
newest
</a></li>
<li><a class="category-pt-2" href="">
price low-high
</a></li>
<li><a class="category-pt-2" href="">
price high-low
</a></li>
</ul>
</nav>
<br><br><br><br>
<a class="go" href="housing-item.html">go! --></a>
</div>
</div>
</body>
</html>