-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathindex.html
55 lines (48 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Box</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="main-grid">
<header>
<img class="logo" src="img/TB.svg" alt="The Box">
<nav class="nav">
<a href="#" class="nav__link">contact</a>
<a href="#" class="nav__link">book now</a>
<a href="#" class="nav__link">become a host</a>
<a href="#" class="nav__link">about</a>
</nav>
</header>
<main>
<h1 class="title">The Box</h1>
<p class="location">Richmond, VA</p>
<img src="img/house.jpg" alt="" class="primary-image">
<div class="secondary-images">
<img src="img/little-1.jpg" alt="" class="secondary-image">
<img src="img/little-2.jpg" alt="" class="secondary-image">
</div>
<p class="description">Do you need time of from your day to day life? Well than take your summertime or
during the winter there is a lot to be done. In Summer go hiking or swim in the nearby lake in Winter go
skiing in the Snowshoe Mountain resort</p>
<button class="btn">Book now</button>
</main>
<footer>
<div class="social-links">
<a href="#" class="social-link" aria-label="snapchat">
<img src="img/snapchat-ghost.svg" alt="snapchat" class="social-img">
</a>
<a href="#" class="social-link" aria-label="airbnb">
<img src="img/airbnb.svg" alt="airbnb" class="social-img">
</a>
<a href="#" class="social-link" aria-label="instagram">
<img src="img/instagram.svg" alt="instagram" class="social-img">
</a>
</div>
</footer>
</div>
</body>
</html>