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
34 lines (27 loc) · 991 Bytes
/
index.html
File metadata and controls
34 lines (27 loc) · 991 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
34
<!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>Main Home Page</title>
</head>
<body>
<h1>Meet GuideBooks</h1>
<p>Discover hunders of local spots recommended by Airbnb hosts</p>
<div class='images'>
<div class='centered' id='san-fran-1'><p>San Fransisco</p></div>
<div class='centered' id='new-york'><p>New York</p></div>
<div class='centered' id='london'><p>London</p></div>
</div>
<p class ='see-all-button'>See All Guidebooks</p>
<h1>Just for the weekend</h1>
<p>Discover new, inspiring places close to home.</p>
<div class='images'>
<div class='centered' id='napa'><p>Napa</p></div>
<div class='centered' id='sonoma'><p>Sonoma</p></div>
<div class='centered' id='san-fran-2'><p>San Francisco</p></div>
</div>
<p class='see-all-button'>See All Destinations</p>
</body>
</html>