-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (98 loc) · 4.18 KB
/
index.html
File metadata and controls
99 lines (98 loc) · 4.18 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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>Dry Oars</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body id ="darkMode">
<div class="mainContainer">
<header class="headerContainer">
<a id="logo_link" href="index2.html">
<img class="logo" src="https://byui-wdd.github.io/wdd130/rafting_images/dryoarlogo.png" alt="Logo">
</a>
<nav class="navContainer">
<ul class="linksContainer">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
<li>
<a href="site-plan-rafting.html">Site Plan</a>
</li>
<li>
<a href="contactus.html">Contact Us</a>
</li>
</ul>
</nav>
</header>
<div class="mainImg" id="hero">
<div id="hero-box">
<img id="hero-img" class='heroImg' src="images/hero.png" alt="People enjoying white water rafting">
<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>
</div>
<main class="home-grid">
<section class="rivers-card">
<img class="card-img" src="images/rivers.jpg" alt="river in forest">
<div class="icon-title">
<img class="icon" src="images/river_icon.png" alt="river icon">
<h2 class="card-title">Rivers</h2>
</div>
</section>
<section class="camping-card">
<img class="card-img" src="images/camping.jpg" alt="tent in mountains">
<div class="icon-title">
<img class="icon" src="images/fire_icon.png" alt="fire icon">
<h2 class="card-title">Camping</h2>
</div>
</section>
<section class="rapids-card">
<img class="card-img" src="images/rapids.jpg" alt="rafting boat">
<div class="icon-title">
<img class="icon" src="images/oars.png" alt="oars icon">
<h2 class="card-title">Rapids</h2>
</div>
</section>
<div id="background">
<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>
<div class='join'>
<a href="rivers.html">Join Us</a>
</div>
</section>
</div>
</main>
</div>
<footer>
<div class="footerLinks">
<h3>Dry Oar || Zeir Braidi</h3>
<h3><a href="site-plan-rafting.html" target="_blank">Site Plan</a></h3>
<h3><a href="contactus.html">Contact Us</a></h3>
</div>
<div class="redSocial">
<a href="https://facebook.com" target="_blank">
<img class="icono-social" src="images/facebook.png" alt="fb icon">
</a>
<a href="https://twitter.com" target="_blank">
<img class="icono-social" src="images/twitter.png" alt="twitter icon">
</a>
<a href="https://instagram.com" target="_blank">
<img class="icono-social" src="images/instagram.png" alt="instagram icon">
</a>
</div>
</footer>
</body>
</html>