-
Notifications
You must be signed in to change notification settings - Fork 0
/
8-index.html
137 lines (137 loc) · 6.01 KB
/
8-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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AirBnB Clone</title>
<link rel="stylesheet" href="styles/4-common.css">
<link rel="stylesheet" href="styles/3-header.css">
<link rel="stylesheet" href="styles/3-footer.css">
<link rel="stylesheet" href="styles/6-filters.css">
<link rel="stylesheet" href="styles/8-places.css">
<link rel="icon" href="images/icon.png" type="image/png">
</head>
<body>
<header>
<div class="logo"></div>
</header>
<div class="container">
<section class="filters">
<button>Search</button>
<div class="locations">
<h3>Locations</h3>
<h4>California, Arizona...</h4>
<ul class="popover">
<li>
<h2>Arizona:</h2>
<ul>
<li>Camp Verde</li>
<li>Jerome</li>
</ul>
</li>
<li>
<h2>California:</h2>
<ul>
<li>San Francisco</li>
<li>Los Alto</li>
</ul>
</li>
</ul>
</div>
<div class="amenities">
<h3>Amenities</h3>
<h4>Internet, Kitchen...</h4>
<ul class="popover">
<li>Internet</li>
<li>TV</li>
<li>Kitchen</li>
<li>Pressing Iron</li>
</ul>
</div>
</section>
<section class="places">
<h1>Places</h1>
<article>
<h2>My Home</h2>
<div class="price_by_night">
<p>$65</p>
</div>
<div class="information">
<div class="max_guest">
<div class="guest_image"></div>
<p>4 Guests</p>
</div>
<div class="number_rooms">
<div class="bed_image"></div>
<p>2 Bedroom</p>
</div>
<div class="number_bathrooms">
<div class="bath_image"></div>
<p>1 Bathroom</p>
</div>
</div>
<div class="user">
<p><b>Owner: </b>Zendaya Barkeley</p>
</div>
<div class="description">
<p>This is a lovely 1 bedroom and 1 bathroom apartment that can accommodate 2 people. It is loacted at the center of Shanghai and next to the well known Shaolin Temple, 1 stop to People Square, 2 stops to Bund, 3 stops to Jingan Temple.</p>
</div>
</article>
<article>
<h2> Tiny House</h2>
<div class="price_by_night">
<p>$85</p>
</div>
<div class="information">
<div class="max_guest">
<div class="guest_image"></div>
<p>4 Guests</p>
</div>
<div class="number_rooms">
<div class="bed_image"></div>
<p>2 Bedroom</p>
</div>
<div class="number_bathrooms">
<div class="bath_image"></div>
<p>1 Bathroom</p>
</div>
</div>
<div class="user">
<p><b>Owner: </b>John Lenon</p>
</div>
<div class="description">
<p>Our place is a private, affordable stand-alone guest house centrally located just minutes to French Quarters, Downtown, the Fair Grounds (Jazz Fest) and City Park. The guest house is a quaint, 400 square ft. with full bath, mini kitchen and living room. The extra high ceilings make the home feel more comfortable than it would have been.</p>
</div>
</article>
<article>
<h2>A Suite</h2>
<div class="price_by_night">
<p>$190</p>
</div>
<div class="information">
<div class="max_guest">
<div class="guest_image"></div>
<p>4 Guests</p>
</div>
<div class="number_rooms">
<div class="bed_image"></div>
<p>2 Bedroom</p>
</div>
<div class="number_bathrooms">
<div class="bath_image"></div>
<p>1 Bathroom</p>
</div>
</div>
<div class="user">
<p><b>Owner: </b>Peter Parker</p>
</div>
<div class="description">
<p>Our place is a private, affordable stand-alone guest house centrally located just minutes to French Quarters, Downtown, the Fair Grounds (Jazz Fest) and City Park. The guest house is a quaint, 400 square ft. with full bath, mini kitchen and living room. The extra high ceilings make the home feel more comfortable than it would have been.</p>
</div>
</article>
</section>
</div>
<footer>
<p>Best School</p>
</footer>
</body>
</html>