-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutdoor adventure.html
More file actions
76 lines (65 loc) · 2.15 KB
/
outdoor adventure.html
File metadata and controls
76 lines (65 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Outdoor Adventure</title>
<link rel="stylesheet" href="outdoor adventure_style.css">
</head>
<body>
<header>
<div class="logo">OUTDOOR <br>
<h4 id="hs">ADVENTURE</h4>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact</a></li>
<button class="action-button">TAKE ACTION</button>
</ul>
</nav>
</header>
<section class="hero">
<h1>Explore the Colourful World</h1>
<h2>A Wonderful Gift</h2>
<button class="start-button">START NOW</button>
</section>
<section class="quote">
<blockquote>
"Fuerat Destu carentem habentia spectent tonitrua mutastis locavit liberioris."
<cite>- Adam Sandler</cite>
</blockquote>
</section>
<section class="events">
<h3>Upcoming Events</h3>
<div class="event">
<img src="img1.jpeg" alt="Camp Trek">
<h4>Everest Camp Trek</h4>
<p>Forret seu nomesem habendespecent innTuo meown</p>
<button>Learn More</button>
</div>
<div class="event">
<img src="img2.jpeg" alt="Walking Holidays">
<h4>Walking Holidays</h4>
<p>Forret seu nomesem habendespecent innTuo meown</p>
<button>Learn More</button>
</div>
</section>
<section class="explore">
<h3>Explore The World</h3>
<button>Learn More</button>
</section>
<section class="tours">
<h3>Upcoming Tours & Destination</h3>
<p>porecrauer anarak Concordi aura</p>
<button>Learn More</button>
</section>
<footer>
<p>123 Pitch Avenue, NY 10180, New York, USA | Phone: 800-123-456 | Email: contact@example.com</p>
<p>Copyright © 2015 Outdoor Adventure</p>
</footer>
</body>
</html>