-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (77 loc) · 3.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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" href="styles/style.css">
<title>Whitewater Rafting Vacations | Dry Oar Boating | Home</title>
</head>
<body>
<div id="content">
<header>
<a id="logo_link" href="index.html">
<img class="logo" src="images/logo.png" alt="Dry Oar Logo">
</a>
<nav>
<a href="index.html">Home</a>
<a href="rivers.html">Rivers</a>
<a href="site-plan-rafting.html">Site Plan</a>
<a href="contactus.html">Contact Us</a>
</nav>
</header>
<div id="hero">
<div id="hero-box">
<img id="hero-img" src="images/hero.png" alt="People enjoying white water rafting">
</div>
<section id="hero-msg">
<h1 class="home-title">Have An Adventure</h1>
<h4>Make Memories with Dry Oar </h4>
<div class='button-box'>
<a class='book' href="rates.html">Book Now</a>
</div>
</section>
</div>
<main class="home-grid">
<section class="rivers-card">
<img class="card-img" src="images/rivers.jpg" alt="river in forest">
<img class="icon" src="images/river_icon.png" alt="river icon">
<h2>Rivers</h2>
</section>
<section class="camping-card">
<img class="card-img" src="images/camping.jpg" alt="tent in mountains">
<img class="icon" src="images/fire_icon.png" alt="fire icon">
<h2>Camping</h2>
</section>
<section class="rapids-card">
<img class="card-img" src="images/rapids.jpg" alt="rafting boat">
<img class="icon" src="images/oars.png" alt="oars icon">
<h2>Rapids</h2>
</section>
<div id="background"></div>
<img class="mountains" src="images/mountains.jpg" alt="Misty mountains">
<section class="msg">
<h2>More Than Just The Thrill</h2>
<p>Enjoy the breathtaking scenery. From valleys, meadows, canyons, and high peaks; it's way more than just the rapids. It's a great way to get away from it all and relax amongst all the beauty of the great outdoors. </p>
<a class='join' href="rivers.html">Join Us</a>
</section>
</main>
<footer>
<p>Dry Oar © 2023 - Sophia Beebe</p>
<p><a href="site-plan-rafting.html">Site Plan</a></p>
<p><a href="contactus.html">Contact Us</a></p>
<div class="social">
<a href="https://facebook.com" target="_blank">
<img src="images/facebook.png" alt="fb icon">
</a>
<a href="https://twitter.com" target="_blank">
<img src="images/twitter.png" alt="twitter icon">
</a>
<a href="https://instagram.com" target="_blank">
<img src="images/instagram.png" alt="instagram icon">
</a>
</div>
</footer>
</div>
</body>
</html>