forked from justinmajetich/AirBnB_clone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path5-index.html
35 lines (32 loc) · 787 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AirBnB clone</title>
<link rel="shortcut icon" href="images/icon.ico" >
<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/5-filters.css"/>
</head>
<body>
<header>
<div id="header_logo"></div>
</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>