-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
225 lines (209 loc) · 7.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!doctype html>
<html class="no-js" lang="en">
<head>
<!-- Meta tags for character set, viewport, and compatibility -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Unplugged Retreat</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Linking manifest file and Apple touch icon -->
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Poppins:500,700" rel="stylesheet">
<!-- FontAwesome CDN version 5.5 -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<!-- Normalize CSS and custom main styles -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Header section with site logo and navigation links -->
<header>
<div class="content-wrapper">
<figure>
<a href="#">
<img src="img/unpluggedlogo.png" alt="unplugged logo">
</a>
</figure>
<div class="header-divider"></div>
<nav>
<ul>
<li><a href="faq/index.html">FAQ</a></li>
<li><a href="about/index.html">About</a></li>
</ul>
</nav>
</div>
</header>
<!-- Main content of the page -->
<main>
<!-- Hero section with a retreat message -->
<section class="hero-area">
<div class="content-wrapper">
<h1>Retreat from the desk, return refreshed.</h1>
</div>
</section>
<!-- Aside section with information about joining the retreat -->
<aside>
<div class="content-wrapper">
<div class="form-description">
<h3>Want to join the next retreat?</h3>
<p>
Find out when we are holding our next retreat and how your company or team can sign up!
</p>
</div>
<div class="form">
<h3>Find out more</h3>
<input type="text" name="name" value="name@email.com">
<input type="button" value="Download Itinerary">
</div>
</div>
<!-- aside content wrapper ends -->
</aside>
<!-- Section highlighting features of the retreat -->
<section class="features">
<div class="content-wrapper">
<h2>Have the work week you always dreamed of — without the bad wifi.</h2>
<div class="features-items">
<!-- Features presented in individual articles -->
<article>
<p class="fontawesome-icon">
<i class="fas fa-campground"></i>
</p>
<p class="features-item-description">
Located in a peaceful bungalow outside of Lake Geneva, Wisconsin.
</p>
</article>
<!-- ... Additional feature articles ... -->
<article>
<p class="fontawesome-icon">
<i class="fas fa-bed"></i>
</p>
<p class="features-item-description">
12 private rooms with ensuite bathrooms, 2 group meeting rooms, and 4 breakout rooms.
</p>
</article>
<article>
<p class="fontawesome-icon">
<i class="fas fa-utensils"></i>
</p>
<p class="features-item-description">
Private chef team providing on demand meals - just like your team kitchen.
</p>
</article>
<article>
<p class="fontawesome-icon">
<i class="fas fa-shoe-prints"></i>
</p>
<p class="features-item-description">
5 outdoor obstacle courses, including private beach ½ mile from bungalow.
</p>
</article>
<article>
<p class="fontawesome-icon">
<i class="fas fa-smile"></i>
</p>
<p class="features-item-description">
Retreat facilitator to manage your day to day activities so you all get a chance to reset.
</p>
</article>
<article>
<p class="fontawesome-icon">
<i class="fas fa-wifi"></i>
</p>
<p class="features-item-description">
Dedicated computer room for times that you must wifi.
</p>
</article>
</div>
</div>
</section>
<!-- Section with a review from a previous retreat -->
<section class="reviews">
<div class="content-wrapper">
<h2>Be a better team in 5 days, like this one.</h2>
<article>
<figure>
<img src="img/unplugged-retreat-lacrue.jpg" alt="Group of happy people at an outdoor retreat.">
</figure>
<div>
<h3>LaCrue Bottling Co. October 2018</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
ea commodo consequat. Duis aute irure dolor
in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</p>
</div>
</article>
</div>
</section>
</main>
<!-- main wrapper -->
<!-- Footer section with contact information and social links -->
<footer>
<div class="content-wrapper">
<div class="footer-content">
<div class="contact">
<h4>Contact</h4>
<address>
<p>
555-555-5555<br>
hello@unplugged.com
</p>
</address>
</div>
<div class="social">
<h4>Social</h4>
<div class="social-icons">
<!-- Social media icons with links -->
<p>
<a href="https://www.facebook.com/Skillcrush/" target="_blank"><i class="fab fa-facebook-f"></i></a>
</p>
<p>
<a href="https://twitter.com/Skillcrush" target="_blank"><i class="fab fa-twitter"></i></a>
</p>
<p>
<a href="https://www.instagram.com/skillcrush/" target="_blank"><i class="fab fa-instagram"></i></a>
<!-- ... Additional social media icons ... -->
</p>
</div>
</div>
</div>
<!-- footer content ends -->
</div>
<!--footer content-wrapper ends-->
<div class="copyright">
<p>Copyright 2023-2024 | Unplugged</p>
</div>
</footer>
<!-- Scripts at the end of the body for improved page loading -->
<script src="js/vendor/modernizr-3.6.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.0.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<!-- Fallback to local jQuery if CDN fails -->
<script>
window.jQuery || document.write('<script src="js/vendor/jquery-3.5.0.min.js"><\/script>')
</script>
<!-- Additional scripts for plugins and custom functionality -->
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () {
ga.q.push(arguments)
};
ga.q = [];
ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto');
ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>