-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (50 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>AirBnb Mock</title>
</head>
<body>
<div class="main-container">
<article class="text-area">
<h1>Meet Your Guides</h1>
<p>Discover hundreds of local restaurants recommended by AirBnb hosts</p>
</article>
<div class="img-panel">
<div style=" background-image: url('img/san-francisco.jpg');" class="img-container images">
<p class="img-text">San Fransisco</p>
</div>
<div style=" background-image: url('img/new-york.jpg');" class="img-container images">
<p class="img-text">New York</p>
</div>
<div style=" background-image: url('img/london.jpg');" class="img-container images">
<p class="img-text">London</p>
</div>
</div>
<div class="buttonflex">
<p class="button">See All Guides</p>
</div>
<article class="text-area">
<h1>Just for the weekend</h1>
<p>Discover new, inspiring places close to home</p>
</article>
<div class="img-panel">
<div style=" background-image: url('img/napa.jpg');" class="img-container images">
<p class="img-text">Napa</p>
</div>
<div style=" background-image: url('img/san-francisco-2.jpg');" class="img-container images">
<p class="img-text">San Fransisco</p>
</div>
<div style=" background-image: url('img/sonoma.jpg');" class="img-container images">
<p class="img-text">Sanoma</p>
</div>
</div>
<div class="buttonflex">
<p class="button">See All Destinations</p>
</div>
</div>
</body>
</html>