forked from WDI-SEA/css-airbnb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Airbnb</title>
</head>
<body>
<h2>Meet Guidebooks</h2>
<h4>Discover hundreds of local spots recommended by Airbnb hosts</h4>
<div class="container">
<div class="sf1 box">
San Francisco
</div>
<div class="newyork box">
New York
</div>
<div class="london box">
London
</div>
</div>
<div class="container1">
<div class="box1">
<a href="https://www.airbnb.com/things-to-do">See all Guidebooks</a>
</div>
</div>
<h2>Just for the weekend</h2>
<h4>Discover new, inspiring places close to home</h4>
<div class="container">
<div class="napa box">
Napa
</div>
<div class="sonoma box">
Sonoma
</div>
<div class="sf2 box">
San Francisco
</div>
</div>
<div class="container1">
<div class="box1">
<a href="https://www.airbnb.com/getaways/Singapore">See all Destinations</a>
</div>
</div>
</body>
</html>