-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7-index.html
executable file
·81 lines (80 loc) · 2.8 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
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AirBnB clone</title>
<link rel="stylesheet" type="text/css" href="styles/4-common.css" />
<link rel="stylesheet" type="text/css" href="styles/3-header.css" />
<link rel="stylesheet" type="text/css" href="styles/3-footer.css" />
<link rel="stylesheet" type="text/css" href="styles/6-filters.css" />
<link rel="stylesheet" type="text/css" href="styles/7-places.css" />
<link rel='shortcut icon' href="../images/icon.png" />
</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>Arizona:</h2>
</li>
<li>
<ul>
<li>Page</li>
<li>Page2</li>
</ul>
</li>
<li>
<h2>California:</h2>
</li>
<li>
<ul>
<li>San Francisco</li>
<li>Los Altos</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>Iron</li>
</ul>
</div>
</section>
<section class="places">
<h1>Places</h1>
<article>
<h2>My Home</h2>
</article>
<article>
<h2>Tiny House</h2>
</article>
<article>
<h2>A suite</h2>
</article>
</section>
</div>
<footer>
<p>Holberton School</p>
</footer>
</body>
</html>