-
Notifications
You must be signed in to change notification settings - Fork 0
/
6-index.html
55 lines (55 loc) · 1.86 KB
/
6-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
<!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="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>
</div>
<footer>
<p>Best School</p>
</footer>
</body>
</html>