-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path7-index.html
75 lines (75 loc) · 1.96 KB
/
7-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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AirBnB clone</title>
<link rel="icon" href="images/icon.png">
<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/7-places.css">
</head>
<body>
<header>
</header>
<div class="container">
<section class="filters">
<button>Search</button>
<div class="locations">
<h3>States</h3>
<h4>California, Arizona...</h4>
<ul class="popover">
<li><h2>Virginia</h2></li>
<li>
<ul>
<li>Richmond</li>
<li>Fairfax</li>
</ul>
</li>
<li><h2>New York</h2></li>
<li>
<ul>
<li>New York City</li>
<li>Manhattan</li>
<li>Brooklyn</li>
</ul>
</li>
<li><h2>New Jersey</h2></li>
<li>
<ul>
<li>Edison</li>
<li>Hoboken</li>
</ul>
</li>
</ul>
</div>
<div class="amenities">
<h3>Amenities</h3>
<h4>Internet, Kitchen...</h4>
<ul class="popover">
<li>Hot tub</li>
<li>Pool</li>
<li>Gym</li>
<li>Continental breakfast</li>
<li>Daycare</li>
</ul>
</div>
</section>
<section class="places">
<h1>Places</h1>
<article>
<h2>Becky's House</h2>
</article>
<article>
<h2>China</h2>
</article>
<article>
<h2>Couch</h2>
</article>
</section>
</div>
<footer>
<p>Holberton School</p>
</footer>
</body>
</html>