-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.24 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.24 KB
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
<!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>Hello Front-End</title>
</head>
<body>
<h1 class="text">Meet Guidebooks</h1>
<p class="text">Discover hundreds of local spots recommended by Airbnb hosts</p>
<div class="row1">
<div class="row1item">
<img src=img/san-francisco.jpg>
<p>San Francisco</p>
</div>
<div class="row1item">
<img src=img/new-york.jpg>
<p>New York</p>
</div>
<div class="row1item">
<img src=img/london.jpg>
<p>London</p>
</div>
</div>
<button class="guidebooks">See All Guidebooks</button>
<h1 class="text">Just for the weekend</h1>
<p class="text">Discover new, inspiring places close to home.</p>
<div class="row1">
<div class="row1item">
<img src=img/napa.jpg>
<p>Napa</p>
</div>
<div class="row1item">
<img src=img/sonoma.jpg>
<p>Sonoma</p>
</div>
<div class="row1item">
<img src=img/san-francisco-2.jpg>
<p>San Francisco</p>
</div>
</div>
<button class="destinations">See All Destinations</button>
</body>
</html>