-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
645 lines (641 loc) · 37.9 KB
/
Copy pathindex.html
File metadata and controls
645 lines (641 loc) · 37.9 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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="default-src 'self';">
<link rel="stylesheet" href="assets/css/style.css">
<script defer src="./assets/js/tags.js"></script>
<title>Front End Mentor</title>
</head>
<body>
<div id="nav-container">
<nav>
<a href="../Front-End-Mentor/index.html">home</a>
<p>Trent Slaton</p>
<div id="search-container">
<input type="text" id="search-bar" placeholder="Search">
<button id="search-button">
<svg xmlns="http://www.w3.org/2000/svg" width="20px" height="20px" viewBox="0 0 15 15" fill="white">
<path d="M 14.298 13.202 l -3.87 -3.87 c 0.701 -0.929 1.122 -2.081 1.122 -3.332 c 0 -3.06 -2.489 -5.55 -5.55 -5.55 c -3.06 0 -5.55 2.49 -5.55 5.55 c 0 3.061 2.49 5.55 5.55 5.55 c 1.251 0 2.403 -0.421 3.332 -1.122 l 3.87 3.87 c 0.151 0.151 0.35 0.228 0.548 0.228 s 0.396 -0.076 0.548 -0.228 C 14.601 13.995 14.601 13.505 14.298 13.202 M 1.55 6 c 0 -2.454 1.997 -4.45 4.45 -4.45 c 2.454 0 4.45 1.997 4.45 4.45 S 8.454 10.45 6 10.45 C 3.546 10.45 1.55 8.454 1.55 6"></path>
</svg>
</button>
</div>
</nav>
</div>
<header id="page-header">
<h1>Front End Mentor Challenges</h1>
<p>This is my growing list of challenges from <a href="https://www.frontendmentor.io" title="Go to frontendmentor.io">Front End Mentor</a>.</p>
</header>
<section id="showcase">
<article>
<div class="container">
<a href="_challenges/001-qr-code/index.html" title="View live demo.">
<figure>
<img src="assets/img/001-qr-code.gif" alt="screenshot of qr code that leads to front end mentor" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/001-qr-code/index.html" title="View live demo.">
<header>001 QR Code</header>
</a>
<p>The first and simplest of the Front End Mentor Challenges. It is a QR Code card that brings you to the Front End Mentor website. It is centered in the viewport and responds elegantly to virtually all viewport sizes.</p>
<p class="date">November 17, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/001-qr-code" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/002-results-summary/index.html" title="View live demo.">
<figure>
<img src="assets/img/002-results-summary.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/002-results-summary/index.html" title="View live demo.">
<header>002 Results Summary</header>
</a>
<p>A simple two-column layout displaying what appears to be the results of a mental acuity assessment. The results card is centered in the viewport and transitions to a vertical layout at smaller viewport sizes. Features a button that changes style on hover.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/002-results-summary" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/results-summary-component-CE_K6s0maV" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/003-product-preview-card/index.html" title="View live demo.">
<figure>
<img src="assets/img/003-product-preview-card.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/003-product-preview-card/index.html" title="View live demo.">
<header>003 Product Preview Card</header>
</a>
<p>A simple two-column layout featuring the image of a perfume bottle and its product details. The product card is centered in the viewport and transitions to a vertical layout at smaller viewport sizes. The image elegantly responds to both horizontal and vertical viewport adjustment. Features a button that changes style on hover.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/003-product-preview-card" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/product-preview-card-component-GO7UmttRfa" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/004-nft-preview-card/index.html" title="View live demo.">
<figure>
<img src="assets/img/004-nft-preview-card.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/004-nft-preview-card/index.html" title="View live demo.">
<header>004 NFT Preview Card</header>
</a>
<p>A simple single-column layout featuring a one-of-a-kind NFT... dont miss out!</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/004-nft-preview-card" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/nft-preview-card-component-SbdUL_w0U" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/005-order-summary/index.html" title="View live demo.">
<figure>
<img src="assets/img/005-order-summary.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/005-order-summary/index.html" title="View live demo.">
<header>005 Order Summary</header>
</a>
<p>A simple single-column layout presenting the user with the final step before confirming purchase of a music streaming service. Demonstrates a number of buttons and links that change style on hover.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/005-order-summary" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/order-summary-component-QlPmajDUj" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/006-stats-preview-card/index.html" title="View live demo.">
<figure>
<img src="assets/img/006-stats-preview-card.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/006-stats-preview-card/index.html" title="View live demo.">
<header>006 Stats Preview Card</header>
</a>
<p>A two-column layout featuring the faces of our very happy customers... and the stats that make them happy! The image responds gracefully to both horizontal and vertical changes in viewport size. The image also has a deep purple tint in the form of a transparent overlay.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/006-stats-preview-card" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/stats-preview-card-component-8JqbgoU62" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/007-three-column-card/index.html" title="View live demo.">
<figure>
<img src="assets/img/007-three-column-card.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/007-three-column-card/index.html" title="View live demo.">
<header>007 Three Column Card</header>
</a>
<p>A very simple yet elegant three-column layout. The elegance is in the use of the inherent block-layout properties of the HTML elements. All that is needed is to define each column, and the rest flows into place. Responds to changes in viewport size and demonstrates buttons that change styling on hover.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/007-three-column-card" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/3column-preview-card-component-pH92eAR2-" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/008-profile-card/index.html" title="View live demo.">
<figure>
<img src="assets/img/008-profile-card.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/008-profile-card/index.html" title="View live demo.">
<header>008 Profile Card</header>
</a>
<p>An identification card displaying a user's profile picture, age, location and various media stats. Positioning the profile pic is the most complicated part of this demo.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/008-profile-card" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/profile-card-component-cfArpWshJ" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/009-four-card-feature/index.html" title="View live demo.">
<figure>
<img src="assets/img/009-four-card-feature.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/009-four-card-feature/index.html" title="View live demo.">
<header>009 Four Card Feature</header>
</a>
<p>A product feature page for what appears to be an AI-powered SaaS. The product features are laid out in cards in a stylized cross formation.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/009-four-card-feature" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/four-card-feature-section-weK1eFYK" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/010-social-proof/index.html" title="View live demo.">
<figure>
<img src="assets/img/010-social-proof.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/010-social-proof/index.html" title="View live demo.">
<header>010 Social Proof</header>
</a>
<p>A social-proof page for what seems to be a fantastic product! Star ratings and customer reviews are laid out in a staggered progression.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/010-social-proof" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/social-proof-section-6e0qTv_bA" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/011-price-grid/index.html" title="View live demo.">
<figure>
<img src="assets/img/011-price-grid.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/011-price-grid/index.html" title="View live demo.">
<header>011 Price Grid</header>
</a>
<p>A three-section grid layout advertising a community around the product and the price and benefits of the product. Demonstrates a button that changes style on hover.</p>
<p class="date">November 18, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/011-price-grid" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/single-price-grid-component-5ce41129d0ff452fec5abbbc" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/012-huddle-landing-page/index.html" title="View live demo.">
<figure>
<img src="assets/img/012-huddle-landing-page.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/012-huddle-landing-page/index.html" title="View live demo.">
<header>012 Huddle Landing Page</header>
</a>
<p>A very simple landing page showing mokups for various devices, a header and blurb and a button that changes style on hover.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/012-huddle-landing-page" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/huddle-landing-page-with-a-single-introductory-section-B_2Wvxgi0" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/013-testimonials-grid/index.html" />
<figure>
<img src="assets/img/013-testimonials-grid.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/013-testimonials-grid/index.html" title="View live demo.">
<header>013 Testimonials Grid</header>
</a>
<p>An intricate grid layout of interlocking cells. Each grid cell represents a customer interaction displaying their profile photo, verification status and review of the product.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/013-testimonials-grid" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/testimonials-grid-section-Nnw6J7Un7" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/014-fylo-data-storage/index.html" />
<figure>
<img src="assets/img/014-fylo-data-storage.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/014-fylo-data-storage/index.html" title="View live demo.">
<header>014 Fylo Data Storage</header>
</a>
<p>A stylized progress meter representing consumed vs. available storage in a cloud storage service. TODO: clickable icon links.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/014-fylo-data-storage" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/fylo-data-storage-component-1dZPRbV5n" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/015-clipboard-landing-page/index.html" />
<figure>
<img src="assets/img/015-clipboard-landing-page.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/015-clipboard-landing-page/index.html" title="View live demo.">
<header>015 Clipboard Landing Page</header>
</a>
<p>An elegant landing page in a single-column layout displaying the product on multiple devices, clickable download links that change styling on hover, product features, industry consumers and a footer with links to more information.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/015-clipboard-landing-page" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/clipboard-landing-page-5cc9bccd6c4c91111378ecb9" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/016-huddle-landing-page/index.html" />
<figure>
<img src="assets/img/016-huddle-landing-page.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/016-huddle-landing-page/index.html" title="View live demo.">
<header>016 Huddle Landing Page</header>
</a>
<p>An elegant landing page in a single-column layout displaying mockups for desktop and mobile, product benefits, several sign up buttons that change styling on hover and a footer with more information.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/016-huddle-landing-page" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/huddle-landing-page-with-alternating-feature-blocks-5ca5f5981e82137ec91a5100" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/017-fylo-landing-page/index.html" />
<figure>
<img src="assets/img/017-fylo-landing-page.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/017-fylo-landing-page/index.html" title="View live demo.">
<header>017 Fylo Landing Page</header>
</a>
<p>A dense landing page advertising the benefits of a cloud storage service. Demonstrates various clickable links, email submission forms, changing backgrounds and a footer with links to more information.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/017-fylo-landing-page" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/fylo-landing-page-with-two-column-layout-5ca5ef041e82137ec91a50f5" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/018-huddle-landing-page/index.html" />
<figure>
<img src="assets/img/018-huddle-landing-page.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/018-huddle-landing-page/index.html" title="View live demo.">
<header>018 Huddle Landing Page</header>
</a>
<p>A sophisticated single-column landing page with alternating stylized backgrounds, buttons that change style on hover, a footer with links to more information and an email submission form.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/018-huddle-landing-page" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/huddle-landing-page-with-curved-sections-5ca5ecd01e82137ec91a50f2" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
<article>
<div class="container">
<a href="_challenges/019-chat-app/index.html" />
<figure>
<img src="assets/img/019-chat-app.gif" alt="" loading="lazy">
</figure>
</a>
<div class="post-link">
<a href="_challenges/019-chat-app/index.html" title="View live demo.">
<header>019 Chat App</header>
</a>
<p>A simple layout centered in the viewport displaying a phone with a sophisticated layout featuring chatter profile, image sharing, alternating colors, interactive selection cards and a text message input section.</p>
<p class="date">November 19, 2023</p>
</div>
</div>
<hr>
<footer>
<a href="_tagpages/html.html" title="See more about the html tag.">
<div class="tag">html</div>
</a>
<a href="_tagpages/css.html" title="See more about the css tag.">
<div class="tag">css</div>
</a>
<a href="_tagpages/responsive.html" title="See more about the responsive tag.">
<div class="tag">responsive</div>
</a>
<div class="link-container">
<a id="github-link" href="https://github.com/TrentSlaton/Front-End-Mentor/tree/master/_challenges/019-chat-app" title="View source code on GitHub."><img src="assets/img/github-mark.svg" alt=""></a>
<a id="fem-link" href="https://www.frontendmentor.io/challenges/chat-app-css-illustration-O5auMkFqY" title="View original challenge page on frontendmentor.io"><img src="assets/img/frontend-mentor-avatar.svg" alt=""></a>
</div>
</footer>
</article>
</section>
</body>
</html>