-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
353 lines (325 loc) · 13.7 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Playfair+Display:wght@500&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="css/icofont.css">
<link rel="stylesheet" href="./css/style.css" />
<title>The One Ring</title>
</head>
<body>
<div class="navigation">
<input type="checkbox" class="navigation__checkbox" id="nav-toggle">
<label for="nav-toggle" class="navigation__button">
<span class="navigation__icon"> </span>
</label>
<div class="navigation__background"> </div>
<nav class="navigation__nav">
<ul class="navigation__list">
<li class="navigation__item"><a href="#home" class="navigation__link">Home</a></li>
<li class="navigation__item"><a href="#about" class="navigation__link">About</a></li>
<li class="navigation__item"><a href="#features" class="navigation__link">Features</a></li>
<li class="navigation__item"><a href="#insight" class="navigation__link">Insights</a></li>
<li class="navigation__item"><a href="#offers" class="navigation__link">Offers</a></li>
<li class="navigation__item"><a href="#contact" class="navigation__link">Newsletter</a></li>
</ul>
</nav>
</div>
<header class="header" id="home">
<div class="header__text-box">
<h1 class="heading-primary u-margin-bottom-medium">
<span class="heading-primary--main">One ring to rule them all</span>
<span class="heading-primary--sub">One ring to find them,</span>
<span class="heading-primary--sub">One ring to bring them all</span>
<span class="heading-primary--sub">and in the darkness bind them.</span>
</h1>
<a class="btn btn--gold btn--animated" href="#offers">Buy Now</a>
</div>
</header>
<main>
<section class="section-about" id="about">
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary">
Fear No More!
</h2>
</div>
<div class="row">
<div class="col-1-of-2">
<p class="paragraph">
The <b>One Ring</b> is one of the most powerful artifacts ever created
in <em>Middle-earth</em>. It was crafted by the
<em>Dark Lord Sauron</em> in the Mount Doom, during the Second Age.
Sauron's intent was to enhance his own power, and gain lordship over
the Elves and all of the other races in Middle-earth.
</p>
<a href="https://lotr.fandom.com/wiki/One_Ring" target="_blank" class="btn-text">Learn More →</a>
</div>
<div class="col-1-of-2">
<div class="composition">
<picture>
<source srcset="img/theRinghollow_low.png" media="(max-width: 37.5em)">
<img src="img/theRinghollow.png" alt="photo of ring" class="composition__photo composition__photo--p1" />
</picture>
</div>
</div>
</div>
</section>
<section class="section-features" id="features">
<div class="row">
<div class="col-1-of-5">
<div class="feature-box">
<i class="feature-box__icon icofont-invisible u-margin-bottom-small"></i>
<h3 class="heading-tertiary u-margin-bottom-small">Invisibility</h3>
<p class="feature-box__text">The wearer becomes invisible to physical beings</p>
</div>
</div>
<div class="col-1-of-5">
<div class="feature-box">
<i class="feature-box__icon icofont-ui-timer u-margin-bottom-small"></i>
<h3 class="heading-tertiary u-margin-bottom-small">Extended Life Span</h3>
<p class="feature-box__text">Extends the lifespan of a mortal bearer indefinitely</p>
</div>
</div>
<div class="col-1-of-5">
<div class="feature-box">
<i class="feature-box__icon icofont-hand-power u-margin-bottom-small"></i>
<h3 class="heading-tertiary u-margin-bottom-small">Augmented Power</h3>
<p class="feature-box__text">Enhances the abilities and powers of the wearer</p>
</div>
</div>
<div class="col-1-of-5">
<div class="feature-box">
<i class="feature-box__icon icofont-resize u-margin-bottom-small"></i>
<h3 class="heading-tertiary u-margin-bottom-small">Adaptable Size</h3>
<p class="feature-box__text">Has the ability to adapt to fingers of varying size</p>
</div>
</div>
<div class="col-1-of-5">
<div class="feature-box">
<i class="feature-box__icon icofont-eye-blocked u-margin-bottom-small"></i>
<h3 class="heading-tertiary u-margin-bottom-small">False Vision</h3>
<p class="feature-box__text">Projects a false vision of its wearer to observers</p>
</div>
</div>
</div>
</section>
<section class="section-stories" id="insight">
<div class="bg-video">
<video class="bg-video__content" autoplay muted loop>
<!-- commented the mp4 due to large file size (.gitignored) -->
<!-- <source src="img/bg-video.mp4" type="video/mp4"> -->
<!-- <source src="img/bg-video.webm" type="video/webm"> -->
Your browser is not suported!
</video>
</div>
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary">
Insights!
</h2>
</div>
<div class="row">
<div class="story">
<figure class="story__shape">
<img src="img/gandalf.jpg" alt="photo of gandalf" class="story__img">
<figcaption class="story__caption">Gandalf</figcaption>
</figure>
<div class="story__text">
<h3 class="heading-tertiary u-margin-bottom-small">Wielder of the Flame of Anor</h3>
<p>
<q>All we have to decide is what to do with the time that is given
us</q>
</p>
</div>
</div>
</div>
<div class="row">
<div class="story">
<figure class="story__shape">
<img srcset="img/boromir_low.jpg 1x, img/boromir.jpg 2x" alt="photo of gandalf" class="story__img"
src="img/boromir_low.jpg">
<figcaption class="story__caption">Boromir</figcaption>
</figure>
<div class="story__text">
<h3 class="heading-tertiary u-margin-bottom-small">High Warden of the White Tower</h3>
<p>
<q>[The Ring] is a gift. A gift to the foes of Mordor. Why not use
this ring?</q>
</p>
</div>
</div>
</div>
<div class="row">
<div class="story">
<figure class="story__shape">
<img src="img/gollum.jpg" alt="photo of gandalf" class="story__img">
<figcaption class="story__caption">Gollum</figcaption>
</figure>
<div class="story__text">
<h3 class="heading-tertiary u-margin-bottom-small">Ring-bearer</h3>
<p>
<q>We must have the precious!</q>
</p>
</div>
</div>
</div>
<div class="u-center-text u-margin-top-big">
<a href="#" class="btn-text">More Stories →</a>
</div>
</section>
<section class="section-offers" id="offers">
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary">
Offers!
</h2>
</div>
<div class="row">
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--1"> </div>
<h4 class="card__heading">Monthly</h4>
<div class="card__details">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Provident repudiandae similique minima ex
reiciendis nesciunt.
</div>
</div>
<div class="card__side card__side--back card__side--back-1">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">Only</p>
<div class="card__price-value">9.99<sub>G</sub></div>
</div>
<a href="#popup" class="btn btn--white">Get It Now</a>
</div>
</div>
</div>
</div>
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--2"> </div>
<h4 class="card__heading">Annual</h4>
<div class="card__details">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis perferendis dignissimos suscipit est
reiciendis odit.
</div>
</div>
<div class="card__side card__side--back card__side--back-2">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">Only</p>
<div class="card__price-value">79.99<sub>G</sub></div>
</div>
<a href="#popup" class="btn btn--white">Get It Now</a>
</div>
</div>
</div>
</div>
<div class="col-1-of-3">
<div class="card">
<div class="card__side card__side--front">
<div class="card__picture card__picture--3"> </div>
<h4 class="card__heading">Life Time</h4>
<div class="card__details">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim nam optio id cupiditate exercitationem
dignissimos?
</div>
</div>
<div class="card__side card__side--back card__side--back-3">
<div class="card__cta">
<div class="card__price-box">
<p class="card__price-only">Only</p>
<div class="card__price-value">199.99<sub>G</sub></div>
</div>
<a href="#popup" class="btn btn--white">Get It Now</a>
</div>
</div>
</div>
</div>
</section>
<section class="section-contact" id="contact">
<div class="row">
<div class="contact">
<div class="contact__form">
<form action="" class="form">
<div class="u-center-text u-margin-bottom-small">
<h2 class="heading-secondary">
Get Our Newsletter
</h2>
</div>
<div class="form__group">
<input type="text" id="name" class="form__input" placeholder="Full Name" required>
<label for="name" class="form__label">Full Name</label>
</div>
<div class="form__group">
<input type="email" id="email" class="form__input" placeholder="Full Name" required>
<label for="email" class="form__label">Email</label>
</div>
<div class="form__group">
<div class="form__radio-group">
<input type="radio" class="form__radio-input" id="regular" name="subscription">
<label for="regular" class="form__radio-label">
<span class="form__radio-button"></span>
Regular subscription</label>
</div>
<div class="form__radio-group u-margin-bottom-small">
<input type="radio" class="form__radio-input" id="special-offers" name="subscription">
<label for="special-offers" class="form__radio-label">
<span class="form__radio-button"></span>
Special offers only</label>
</div>
</div>
<div class="form__group">
<button class="btn btn--gold">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__head">
<h2 class="heading-tertiary">
<span class="heading-tertiary--sub">We invite you to visit our store in</span>
<span class="heading-tertiary--sub"><strong>Sammath Naur</strong> upon <strong>Mount Doom</strong></span>
</h2>
</div>
<div class="row">
<div class="col-1-of-2">
<div class="footer__navigation">
<ul class="footer__list">
<li class="footer__item"><a href="#none" class="footer__link">company</a></li>
<li class="footer__item"><a href="#none" class="footer__link">contact us</a></li>
<li class="footer__item"><a href="#none" class="footer__link">privacy policy</a></li>
<li class="footer__item"><a href="#none" class="footer__link">terms</a></li>
</ul>
</div>
</div>
<div class="col-1-of-2">
<p class="footer__copyright">
Built by <a href="#" class="footer__link">Pejman Naderi</a>.
</p>
</div>
</div>
</footer>
<div class="popup" id="popup">
<div class="popup__content">
<div class="popup__left">
<img src="/img/gandalf.jpg" alt="" class="popup__img">
</div>
<div class="popup__right">
<a href="#section-offers" class="popup__close">×</a>
<h2 class="heading-secondary u-margin-bottom-small">Here goes nothing...</h2>
<p class="popup__text">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Facere, adipisci.
</p>
<a href="#" class="btn-text">Continue →</a>
</div>
</div>
</div>
</body>
</html>