-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5-index.html
executable file
·41 lines (41 loc) · 1.31 KB
/
5-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
<!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/5-filters.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>
</div>
<div class="amenities">
<h3>
Amenities
</h3>
<h4>
Internet, Kitchen...
</h4>
</div>
</section>
</div>
<footer>
<p>Holberton School</p>
</footer>
</body>
</html>