-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
722 lines (722 loc) · 20.6 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
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
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@600&family=Source+Serif+Pro&family=Tenor+Sans&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./bootstrap-5.2/css/bootstrap.css" />
<link rel="stylesheet" href="./style.css" />
<title>Responsive - lab 2</title>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg border-bottom border-muted">
<div class="container container-fluid navigation-container px-4 py-2">
<a class="navbar-brand" href="#">
<img
class="img-logo"
src="./images/5b471562a0981421175a45a5_noiceland_logo.svg"
alt="logo"
/>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#main-navbar"
aria-controls="main-navbar"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="main-navbar">
<ul
class="navbar-nav ms-auto mb-2 mb-lg-0 pt-sm-4 pt-md-5 pt-lg-0 flex-md-row justify-content-md-center"
>
<li class="nav-item p-3 text-end p-md-4 p-lg-1">
<a class="nav-link text-dark fw-bold fs-6" href="#">Home</a>
</li>
<!-- <div id="home" class="navigation-hover d-xs-none d-lg-inline"></div> -->
<li class="nav-item p-3 text-end p-md-4 p-lg-1">
<a class="nav-link text-dark fw-bold fs-6" href="#">Latest</a>
</li>
<!-- <div
id="latest"
class="navigation-hover d-xs-none d-lg-inline"
></div> -->
<li class="nav-item p-3 text-end p-md-4 p-lg-1">
<a class="nav-link text-dark fw-bold fs-6" href="#">About</a>
</li>
<!-- <div
id="about"
class="navigation-hover d-xs-none d-lg-inline"
></div> -->
</ul>
</div>
</div>
</nav>
<section class="banner">
<div class="container">
<div class="row gx-2 py-5">
<div class="col-sm-12 col-lg-7">
<figure>
<img class="img-fluid" src="./images/panner.jpg" alt="banner" />
</figure>
</div>
<div class="px-lg-5 px-sm-0 col-sm-12 col-lg-5">
<h4 class="pb-2">
<a class="underline" href="#">ILLUSTRATION</a>
</h4>
<p class="banner-main-par">
JAPAN HOUSE OPENS IN MOUNTAINSIDE TO FOSTER PEAK CREATIVITY.
</p>
<p class="banner-par">
Enim omittam qui id, ex quo atqui dictas complectitur. Nec ad
timeam accusata, hinc justo falli id eum, ferri novum molestie eos
cu.
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark underline" href="#"
>RETA TROPHY</a
>
</div>
</div>
</div>
<div class="row gx-4 pb-md-3 pb-sm-0">
<div class="col-md-4 col-sm-12 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main1.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">PHOTOGRAPHY</a>
</h4>
<p class="main-par">
HELMUT LANG CELEBRATES TAXI DRIVERS WORLDWIDE IN LATEST CAMPAIGN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark underline" href="#"
>ALESSANDRA ORTIZ</a
>
</div>
</figcaption>
</div>
<div class="col-md-4 col-sm-12 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main2.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">PHOTOGRAPHY</a>
</h4>
<p class="main-par">
BOWLCUT LAUNCH A NEW SUMMER COLLECTION THAT PAYS HOMAGE TO “UK
LEGENDS”
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark underline" href="#"
>ROSANNA ONDRICKA</a
>
</div>
</figcaption>
</div>
<div class="col-md-4 col-sm-12 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main3.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">PHOTOGRAPHY</a>
</h4>
<p class="main-par">
THOUSANDS OF PREVIOUSLY UNSEEN PHOTOGRAPHS BY ANDY WARHOL WILL
BE MADE PUBLIC THIS AUTUMN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark underline" href="#"
>ANNIE LUEILWITZ</a
>
</div>
</figcaption>
</div>
</div>
<div class="row gx-4 col-sm-12">
<div class="col-md-4 col-sm-12 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main4.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">INTERACTIVE DESIGN</a>
</h4>
<p class="main-par">
HELMUT LANG CELEBRATES TAXI DRIVERS WORLDWIDE IN LATEST CAMPAIGN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark underline" href="#"
>ANNIE LUEILWITZ</a
>
</div>
</figcaption>
</div>
<div class="col-md-4 col-sm-12 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main5.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">GRAPHIC DESIGN</a>
</h4>
<p class="main-par">
BOWLCUT LAUNCH A NEW SUMMER COLLECTION THAT PAYS HOMAGE TO “UK
LEGENDS”
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark underline" href="#"
>SIMEON BREKKE</a
>
</div>
</figcaption>
</div>
<div class="col-md -4 col-sm-12 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main6.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">ARCHITECTURE</a>
</h4>
<p class="main-par">
THOUSANDS OF PREVIOUSLY UNSEEN PHOTOGRAPHS BY ANDY WARHOL WILL
BE MADE PUBLIC THIS AUTUMN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark underline" href="#"
>RETA TROPHY</a
>
</div>
</figcaption>
</div>
</div>
</div>
</section>
<div class="container py-5">
<hr class="text-secondary" />
</div>
<section class="latest">
<div class="container">
<h4 class="pb-4"><a class="underline" href="#">LATEST POSTS</a></h4>
<div class="row">
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main1.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">PHOTOGRAPHY</a>
</h4>
<p class="main-par">
JAPAN HOUSE OPENS IN MOUNTAINSIDE TO FOSTER PEAK CREATIVITY.
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>RETA TROPHY</a
>
</div>
</figcaption>
</div>
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main1.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">PHOTOGRAPHY</a>
</h4>
<p class="main-par">
HELMUT LANG CELEBRATES TAXI DRIVERS WORLDWIDE IN LATEST CAMPAIGN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>ALESSANDRA ORTIZ</a
>
</div>
</figcaption>
</div>
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main2.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">PHOTOGRAPHY</a>
</h4>
<p class="main-par">
BOWLCUT LAUNCH A NEW SUMMER COLLECTION THAT PAYS HOMAGE TO “UK
LEGENDS”
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>ROSANNA ONDRICKA</a
>
</div>
</figcaption>
</div>
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main3.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">PHOTOGRAPHY</a>
</h4>
<p class="main-par">
THOUSANDS OF PREVIOUSLY UNSEEN PHOTOGRAPHS BY ANDY WARHOL WILL
BE MADE PUBLIC THIS AUTUMN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>ANNIE LUEILWITZ</a
>
</div>
</figcaption>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main4.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">INTERACTIVE DESIGN</a>
</h4>
<p class="main-par">
HELMUT LANG CELEBRATES TAXI DRIVERS WORLDWIDE IN LATEST CAMPAIGN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>ANNIE LUEILWITZ</a
>
</div>
</figcaption>
</div>
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main5.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">GRAPHIC DESIGN</a>
</h4>
<p class="main-par">
BOWLCUT LAUNCH A NEW SUMMER COLLECTION THAT PAYS HOMAGE TO “UK
LEGENDS”
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>SIMEON BREKKE</a
>
</div>
</figcaption>
</div>
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/main6.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">ARCHITECTURE</a>
</h4>
<p class="main-par">
THOUSANDS OF PREVIOUSLY UNSEEN PHOTOGRAPHS BY ANDY WARHOL WILL
BE MADE PUBLIC THIS AUTUMN
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>RETA TROPHY</a
>
</div>
</figcaption>
</div>
<div class="col-md-6 col-sm-12 col-lg-3 pb-sm-4">
<figure>
<img class="img-fluid" src="./images/late8.jpg" alt="design" />
</figure>
<figcaption>
<h4 class="pb-2">
<a class="underline" href="#">ARCHITECTURE</a>
</h4>
<p class="main-par">
ANU AMBASNA’S PLAYFUL ILLUSTRATIONS CELEBRATE CLUB CULTURE,
BROWN BODIES AND PERFECT PAUNCHES
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>LEO BARTELL</a
>
</div>
</figcaption>
</div>
</div>
<div class="row mx-auto justify-content-center align-items-center">
<button
type="button"
class="view btn btn-outline-dark btn-md mt-5 py-4 rounded-0 col-6 col-md-4 col-lg-3"
>
VIEW ALL LATEST POSTS
</button>
</div>
</div>
</section>
<div class="container py-5">
<hr class="text-secondary" />
</div>
<section class="featured pb-5">
<div class="container">
<h4 class="pb-4"><a class="underline" href="#">FEATURED POSTS</a></h4>
<div class="row pb-5">
<div class="col-sm-12 col-md-6">
<figure>
<img src="./images/feat1.jpg" alt="design" class="img-fluid" />
</figure>
<h4 class="pb-2">
<a class="underline" href="#">GRAPHIC DESIGN</a>
</h4>
<p class="main-par">A BRIEF HISTORY OF THE FIFA WORLD CUP LOGO</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>CLEM ONOJEGHUO</a
>
</div>
</div>
<div class="col-sm-12 col-md-6">
<figure>
<img src="./images/feat2.jpg" alt="design" class="img-fluid" />
</figure>
<h4 class="pb-2">
<a class="underline" href="#">GRAPHIC DESIGN</a>
</h4>
<p class="main-par">
NEED A GUIDE TO LA’S GRAPHIC DESIGN SCENE? SHOPLIFTERS’ NEW ISSUE
HAS GOT YOUR BACK
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>ALESSANDRA ORTIZ</a
>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6">
<figure>
<img src="./images/feat3.jpg" alt="design" class="img-fluid" />
</figure>
<h4 class="pb-2">
<a class="underline" href="#">GRAPHIC DESIGN</a>
</h4>
<p class="main-par">FRED ROWSON DIRECTS FILM FOR YEARS AND YEARS</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>COBY GOTTLIEB</a
>
</div>
</div>
<div class="col-sm-12 col-md-6">
<figure>
<img src="./images/feat4.jpg" alt="design" class="img-fluid" />
</figure>
<h4 class="pb-2">
<a class="underline" href="#">GRAPHIC DESIGN</a>
</h4>
<p class="main-par">
M&C SAATCHI AND FONTSMITH COLLABORATE ON FONT COLLECTION FOR HOUSE
OF ST BARNABAS
</p>
<div>
<span class="pe-2">BY</span
><a class="text-decoration-none text-dark" href="#"
>ANNIE LUEILWITZ</a
>
</div>
</div>
</div>
</div>
</section>
<footer class="footer bg-dark px-3 py-5">
<div class="container">
<div class="row">
<div class="flex-start">
<a href="#"
><img
class="img-fluid"
src="./images/5b4759f1ee75f16151397de3_logo-white.svg"
alt="w-logo"
/></a>
<h4 class="ps-2 d-inline">
© 2018 NOICELAND™, ALL RIGHTS RESERVED
</h4>
</div>
</div>
<div class="py-5">
<hr class="text-light" />
</div>
<div class="row">
<div
class="accordion accordion-flush d-lg-none d-md-block order-2"
id="accordionFlushExample"
>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingOne">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne"
aria-expanded="false"
aria-controls="flush-collapseOne"
>
<a class="text-secondary text-decoration-none fs-6" href="#"
>CATEGORIES</a
>
</button>
</h2>
<div
id="flush-collapseOne"
class="accordion-collapse collapse"
aria-labelledby="flush-headingOne"
data-bs-parent="#accordionFlushExample"
>
<div class="accordion-body">
<ul>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Animation</a
>
</li>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Interactive Design</a
>
</li>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Architecture</a
>
</li>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Miscellaneous</a
>
</li>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Graphic Design</a
>
</li>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Photography</a
>
</li>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Illustration</a
>
</li>
<li class="list-unstyled py-2">
<a class="text-decoration-none text-dark" href="#"
>Product Design</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-8 text-align-start d-none d-lg-block">
<h4 class="pb-3">
<a href="#">CATEGORIES</a>
</h4>
<div class="row">
<ul class="col-3">
<li class="pb-3">
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Animation</a
>
</li>
<li>
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Interactive Design</a
>
</li>
</ul>
<ul class="col-3">
<li class="pb-3">
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Architecture</a
>
</li>
<li>
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Miscellaneous</a
>
</li>
</ul>
<ul class="col-3">
<li class="pb-3">
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Graphic Design</a
>
</li>
<li>
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Photography</a
>
</li>
</ul>
<ul class="col-3">
<li class="pb-3">
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Illustration</a
>
</li>
<li>
<a
href="#"
class="text-light fw-bold fs-6 text-decoration-none"
>Product Design</a
>
</li>
</ul>
</div>
</div>
<div class="col-lg-4 col-12 order-1 px-lg-5">
<h4 class="pb-3">
<a href="#">SUBSCRIBE TO NEWSLETTER</a>
</h4>
<div class="input-group pb-4">
<input
type="text"
class="form-control rounded-0 px-2 py-3"
placeholder="Email address"
aria-label="Email address"
aria-describedby="button-send"
/>
<button
class="btn bg-dark text-light p-3 border-0"
type="submit"
id="button-send"
>
SEND
</button>
</div>
</div>
</div>
<div class="row col col-md-9 col-lg-6 pt-5">
<div class="col-6 col-md-4">
<h4 class="pb-3">
<a href="#">INFORMATION</a>
</h4>
<ul class="p-0">
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>about</a
>
</li>
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>contact</a
>
</li>
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>terms</a
>
</li>
</ul>
</div>
<div class="col-6 col-md-4">
<h4 class="pb-3">
<a href="#" class="hover">FOLLOW US</a>
</h4>
<ul class="p-0">
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>instagram</a
>
</li>
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>facebook</a
>
</li>
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>twitter</a
>
</li>
</ul>
</div>
<div class="col-6 col-md-4">
<h4 class="pb-3">
<a href="#">TEMPLATE</a>
</h4>
<ul class="p-0">
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>Image License Info</a
>
</li>
<li class="py-2">
<a class="text-light text-decoration-none fw-bold fs-6" href="#"
>Powered by Webflow</a
>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="./bootstrap-5.2/js/bootstrap.js"></script>
</body>
</html>