-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_index.html
62 lines (60 loc) · 2.12 KB
/
new_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
58
59
60
61
62
<!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" />
<title>The Box</title>
<link rel="stylesheet" href="./new_style.css" />
</head>
<body>
<div class="main-grid">
<header>
<img src="./images/TB.svg" alt="The Box" class="logo" />
<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="./images/house.jpg" alt="" class="primary-image" />
<div class="secondary-images">
<img src="./images/little-1.jpg" alt="" class="secondary-image" />
<img src="./images/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"><a href="./new_form.html">Book now</a></button>
</main>
<footer>
<div class="social-links">
<a aria-label="snapchat" href="#" class="social-link">
<img
src="./images/snapchat-ghost.svg"
alt="snapchat"
class="social-img"
/>
</a>
<a aria-label="airbnb" href="#" class="social-link">
<img src="./images/airbnb.svg" alt="airbnb" class="social-img" />
</a>
<a aria-label="instagram" href="#" class="social-link">
<img
src="./images/instagram.svg"
alt="instagram"
class="social-img"
/>
</a>
</div>
</footer>
</div>
</body>
</html>