forked from TaylorDarneille/CSS-positioning-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 886 Bytes
/
index.html
File metadata and controls
33 lines (31 loc) · 886 Bytes
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
<!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>
<div id = "title-top">
<h2>Meet Guidebooks</h2>
<h3>Discover hundreds of local spots recommended by Airbnb hosts</h3>
</div>
<div class = "centered-images">
<img src = "san-francisco.jpg">
<img src = "new-york.jpg">
<img src = "london.jpg">
</div>
<button>See All Guidebooks</button>
<div id = "title-top">
<h2>Just for the weekend</h2>
<h3>Discover new, inspiring places close to home</h3>
</div>
<div class = "centered-images">
<img src = "napa.jpg">
<img src = "sonoma.jpg">
<img src = "san-francisco-2.jpg">
</div>
<button>See All Destinations</button>
</body>
</html>