-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2017 lines (1949 loc) · 60 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
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Princess+Sofia&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.1/css/all.css"
integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>La Galerie d'art de Rembrandt</title>
</head>
<body id="top" class="bg-dark">
<!-- 00 NAVBAR -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a href="#top" class="navbar-brand text-danger">
La Galerie d'art de Rembrandt
</a>
<button
class="navbar-toggler navbar-toggler-right"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle Navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="#s2_trio" class="nav-link">Works</a>
</li>
<li class="nav-item">
<a href="#s3_painting_of_the_week" class="nav-link"
>Highlighted Painting</a
>
</li>
<li class="nav-item">
<a href="#s4_about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#s5_prints" class="nav-link">Prints</a>
</li>
<li class="nav-item">
<a href="#s6_paintings" class="nav-link">Paintings</a>
</li>
<li class="nav-item">
<a href="#s7_drawings" class="nav-link">Drawings</a>
</li>
<li class="nav-item">
<a href="#s8_contact" class="nav-link">Contact</a>
</li>
<li class="nav-item">
<a href="#s9_footer" class="nav-link">Info</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- s1_header -->
<section id="s1_header">
<aside class="container">
<h1 class="text-danger display-4">Rembrandt Van Rijn</h1>
<h5 class="text-white">Painter, Draughtsman & Printmaker</h5>
</aside>
</section>
<!-- s2_trio -->
<section id="s2_trio">
<div class="container py-5 myGrid">
<div class="card mx-2">
<div class="card-body mySubGrid">
<img
class="img-fluid border border-dark"
src="./img/interface-imgs/s2-prints.png"
alt="Prints"
/>
<aside>
<h2 class="text-danger my-2">Prints</h2>
<p>
Reproductions of all of Rembrandt's prints available for
purchase. Magnificent prints that show life among Rembrandt’s
family and friends.
</p>
</aside>
</div>
</div>
<div class="card mx-2">
<div class="card-body mySubGrid">
<img
class="img-fluid border border-dark"
src="./img/interface-imgs/s2-paintings.png"
alt="Paintings"
/>
<aside>
<h2 class="text-danger my-2">Paintings</h2>
<p>
Framed, vertical, rectangular pictures, some over four feet in
height. Discovered, framed and designed for collectors like you.
</p>
</aside>
</div>
</div>
<div class="card mx-2">
<div class="card-body mySubGrid">
<img
class="img-fluid border border-dark"
src="./img/interface-imgs/s2-drawings.png"
alt="Drawings "
/>
<aside>
<h2 class="text-danger my-2">Drawings</h2>
<p>
Rembrandt was one of the greatest draftsmen in the history of
art. His drawings expressed his own feelings and observations.
</p>
</aside>
</div>
</div>
</div>
</section>
<!-- s3_painting_of_the_week -->
<section id="s3_painting_of_the_week" class="text-center py-5">
<div class="container p-4">
<h1 class="text-danger">Highlighted Painting</h1>
<img
class="img-fluid my-3 border border-light"
src="./img/s3-painting-of-the-week-Rembrandt_castello_sulla_riva_1640-1650.png"
alt="Painting of the week"
/>
<p class="text-white">Castle Overlooking a River (circa 1645)</p>
</div>
</section>
<!-- s4_about -->
<section id="s4_about" class="py-5">
<div class="container py-5 s4_about_grid">
<div class="img-selfportrait">
<img
class="img-fluid"
src="./img/interface-imgs/s4-about-Rembrandt_Self-Portrait_(1637).png"
alt="Rembrandt"
/>
</div>
<div class="hd-about"><h3 class="text-danger">About</h3></div>
<div class="txt-about">
<p>
<strong>Rembrandt van Rijn</strong> was a Dutch painter and etcher.
He is generally considered one of the greatest painters and
printmakers in European art and the most important in Dutch history.
His contributions to art came in a period of great wealth and
cultural achievement that historians call the Dutch Golden Age when
Dutch Golden Age painting, although in many ways antithetical to the
Baroque style that dominated Europe, was extremely prolific and
innovative, and gave rise to important new genres in painting.
</p>
</div>
</div>
</section>
<!-- s5_prints -->
<section class="py-5" id="s5_prints">
<div class="container py-5">
<h1 class="text-danger">Prints</h1>
<div class="my-thumbs">
<a href="#" data-toggle="modal" data-target="#prints1">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/A-Stout-Man-in-a-Large-Cloak_circa-1628-thumb.jpg"
alt="A Stout Man in a Large Quote"
/></a>
<a href="#" data-toggle="modal" data-target="#prints2">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Bald-headed-Old-Man_1630-thumb.jpg"
alt="Bald-headed Old Man"
/></a>
<a href="#" data-toggle="modal" data-target="#prints3">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Bearded-Old-Man-with-a-High-Forehead_circa-1630-thumb.jpg"
alt="Bearded Headed Old Man with a High Forehead"
/></a>
<a href="#" data-toggle="modal" data-target="#prints4">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Beggar-Man-and-Beggar-Woman-Conversing-thumb.jpg"
alt="Beggar Man and Beggar Woman"
/></a>
<a href="#" data-toggle="modal" data-target="#prints5">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Bust-of-an-Old-Bearded-Man_1631-thumb.jpg"
alt="Bust of an Old Bearded Man"
/></a>
<a href="#" data-toggle="modal" data-target="#prints6">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Jerome-Reading-in-the-Wilderness_1634-thumb.jpg"
alt="Jerome Reading in the Wilderness"
/></a>
<a href="#" data-toggle="modal" data-target="#prints7">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Josephs-Coat-Brought-to-Jacob_circa-1633-thumb.jpg"
alt="Joseph's Coat brought to Jacob"
/></a>
<a href="#" data-toggle="modal" data-target="#prints8">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Old-Man-with-a-Snub-Nose_circa-1629-thumb.jpg"
alt="Old Man with a Snub Nose"
/></a>
<a href="#" data-toggle="modal" data-target="#prints9">
<img
class="img-fluid"
src="img/prints-img/prints-thumbs/Old-Woman-Seated-in-a-Cottage-with-a-String-of-Onions-on-the-Wall_1631-thumb.jpg"
alt="Old Woman Seated in a Cottage with a String of Onions on the Wall"
/></a>
<a href="#" data-toggle="modal" data-target="#prints10"
><img
class="img-fluid"
src="img/prints-img/prints-thumbs/Rembrandt_van_Rijn_-_The_Quacksalver_1635-thumb.jpg"
alt="The Quacksalver"
/></a>
<a href="#" data-toggle="modal" data-target="#prints11"
><img
class="img-fluid"
src="img/prints-img/prints-thumbs/Self-portrait-in-a-Cap,-Laughing-_1630-thumb.jpg"
alt="Self Portrait in a Cap, Laughing"
/></a>
<a href="#" data-toggle="modal" data-target="#prints12"
><img
class="img-fluid"
src="img/prints-img/prints-thumbs/Self-portrait-Leaning-Forward_circa-1628-thumb.jpg"
alt="Self Portrait Leaning Forward"
/></a>
<a href="#" data-toggle="modal" data-target="#prints13"
><img
class="img-fluid"
src="img/prints-img/prints-thumbs/Sheet-of-studies-of-mens-heads_-circa-1630-1631-thumb.jpg"
alt="Sheet of Studies of Men's Heads"
/></a>
<a href="#" data-toggle="modal" data-target="#prints14"
><img
class="img-fluid"
src="img/prints-img/prints-thumbs/The-Artists-Mother--Head-and-Bust-Three-quarters-Right_1628-thumb.jpg"
alt="Head and Bust Three Quarters Right"
/></a>
<a href="#" data-toggle="modal" data-target="#prints15"
><img
class="img-fluid"
src="img/prints-img/prints-thumbs/The-Blindness-of-Tobit-a-Sketch_circa-1629-thumb.jpg"
alt="The Blindness of Tobit"
/></a>
<a href="#" data-toggle="modal" data-target="#prints16"
><img
class="img-fluid"
src="img/prints-img/prints-thumbs/The-Small-Lion-Hunt-with-Two-Lions_-circa-1632-thumb.jpg"
alt="The Small Lion Hunt with Two Lions"
/></a>
<img
class="img-fluid my-bg-image"
src="img/interface-imgs/s5-prints.png"
alt=""
/>
</div>
</div>
</section>
<!-- s6_paintings -->
<section class="py-5" id="s6_paintings">
<div class="container py-5">
<h1 class="text-danger">Paintings</h1>
<aside class="my-cursor">
<div class="my-paintings-container my-paintings-area my-cursor">
<div
class="painting painting-1"
data-toggle="modal"
data-target="#painting1"
></div>
<div
class="painting painting-2"
data-toggle="modal"
data-target="#painting2"
></div>
<div
class="painting painting-3"
data-toggle="modal"
data-target="#painting3"
></div>
<div
class="painting painting-4"
data-toggle="modal"
data-target="#painting4"
></div>
<div
class="painting painting-5"
data-toggle="modal"
data-target="#painting5"
></div>
<div
class="painting painting-6"
data-toggle="modal"
data-target="#painting6"
></div>
<div
class="painting painting-7"
data-toggle="modal"
data-target="#painting7"
></div>
<div
class="painting painting-8"
data-toggle="modal"
data-target="#painting8"
></div>
<div
class="painting painting-9"
data-toggle="modal"
data-target="#painting9"
></div>
<div
class="painting painting-10"
data-toggle="modal"
data-target="#painting10"
></div>
</div>
<img
class="img-fluid windmill"
src="img/interface-imgs/s6-painting.png"
alt="Windmill"
/>
</aside>
</div>
</section>
<!-- s7_drawings -->
<section class="py-5" id="s7_drawings">
<div class="container py-5">
<h1 class="text-danger">Drawings</h1>
<div class="my-thumbs">
<a href="#" data-toggle="modal" data-target="#drawing1">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/a-young-woman-having-her-hair-braided_circa-1637-thumb.jpg"
alt="A Young Woman Having Her Hair Braided"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing2">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/an-elephant-thumb.jpg"
alt="An Elephant"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing3">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/blind-man-walking-with-a-stick-thumb.jpg"
alt="Blind Man Walking with a Stick"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing4">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/dutch-farmhouse-in-sunlight_circa-1635-1636-thumb.jpg"
alt="Dutch Farmhouse in Sunlight"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing5">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/group-of-horsemen_circa-1632-thumb.jpg"
alt="A Group of Horsemen"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing6">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/lady-with-a-fan-thumb.jpg"
alt="Lady with a Fan"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing7">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/landscape-with-two-cottages_circa-1633-thumb.jpg"
alt="Landscape with Two Cottages"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing8">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/man-leaning-on-a-stick-facing-right_circa-1629-1630-thumb.jpg"
alt="Man Leaning on a Stick Facing Right"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing9">
<img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/old-man-seated-in-an-armchair_1631-thumb.jpg"
alt="Old Man Seated in an Armchair"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing10"
><img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/portrait-of-harmen-gerritsz-van-rijn_1630-thumb.jpg"
alt="Portrait of Harmen Gerritsz van Rijn"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing11"
><img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/saskia-at-a-window_circa-1634-1635-thumb.jpg"
alt="Saskia at a Window"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing12"
><img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/seated-old-man_circa-1630--thumb.jpg"
alt="Seated Old Man"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing13"
><img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/study-of-a-girl-sleeping-thumb.jpg"
alt="Study of a Girl Sleeping"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing14"
><img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/susanna-and-the-elders_circa-1630-1633-thumb.jpg"
alt="Susanna and the Elders"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing15"
><img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/the-entombment_1630-thumb.jpg"
alt="The Entombment"
/></a>
<a href="#" data-toggle="modal" data-target="#drawing16"
><img
class="img-fluid"
src="img/drawings-img/drawings-thumbs/woman-carrying-a-child-downstairs_circa-1636-thumb.jpg"
alt="Woman Carrying a Child Downstairs"
/></a>
<img
class="img-fluid my-bg-image"
src="img/interface-imgs/s7-drawing.png"
alt=""
/>
</div>
</div>
</section>
>
<!-- s8_contact -->
<section id="s8_contact" class="py-5">
<div class="container contacts_grid py-5">
<aside class="contact-copy">
<h1 class="text-danger">Contacts</h1>
<p>
La Galerie d'art de Rembrandt <br />
182 N. Union Ave, <br />
Farmington, UT 84025 <br />
555-1234 <br />
</p>
</aside>
<p class="contact-map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d12092399.719946038!2d-108.9313613973186!3d42.273271331500304!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8752fee11014e82f%3A0x1c5e3fda11f60198!2sPluralsight!5e0!3m2!1sen!2sus!4v1537034361031"
width="100%"
height="100%"
frameborder="0"
style="border: 0"
allowfullscreen
></iframe>
</p>
<img
class="img-fluid contact-picture"
src="img/interface-imgs/s8-contact.png"
alt=""
/>
</div>
</section>
<!-- s9_footer -->
<section id="s9_footer" class="text-white py-5">
<div class="container s9_footer_grid py-5">
<aside class="footer_hours">
<h1 class="text-danger h5">La Galerie d'art de Rembrandt</h1>
<p>
Tuesday - Friday: 10:00 am - 5:00 pm <br />
Saturday: 10:00 am - 3:00 pm <br />
Closed Sundays and Mondays
</p>
<div
class="btn-toolbar"
role="toolbar"
aria-label="Social Media Buttons"
>
<div class="btn-group m-2 btn-group-sm">
<button type="button" class="btn btn-info">
<i class="fab fa-facebook"></i>
</button>
<button type="button" class="btn btn-info">
<i class="fab fa-twitter"></i>
</button>
<button type="button" class="btn btn-info">
<i class="fab fa-linkedin-in"></i>
</button>
<button type="button" class="btn btn-info">
<i class="fab fa-instagram"></i>
</button>
</div>
</div>
</aside>
<aside class="footer_menu">
<h1 class="text-danger h5">Menu</h1>
<ul class="list-unstyled">
<li>Home</li>
<li>Paintings, Drawings and Prints</li>
<li>Painting of the Week</li>
<li>About Rembrandt</li>
<li>Prints</li>
<li>Paintings</li>
<li>Drawings</li>
<li>Contacts</li>
</ul>
</aside>
<aside class="footer_museum">
<h1 class="text-danger h5">Some Museums Showing Rembrandts</h1>
<ul class="list-unstyled">
<li>Hermitage Museum</li>
<li>Louvre</li>
<li>National Gallery of Art</li>
<li>National Gallery</li>
<li>Norton Simon Museum</li>
<li>Rijksmuseum</li>
<li>Smithsonian</li>
<li>Staaliche Museen Preussischer Kulturbesitz</li>
<li>The Getty</li>
<li>The Metropolitan Museum of Art</li>
</ul>
</aside>
<aside class="footer_painting_names">
<h1 class="text-danger h5">Painting Names</h1>
<ul class="list-unstyled">
<li>Self Portrait As A Young Man</li>
<li>Portrait Of Jan Six</li>
<li>Syndics Of The Drapers' Guild</li>
<li>The Storm On The Sea</li>
<li>Self-Portrait With Beret</li>
<li>Danaë</li>
<li>The Bride</li>
<li>The Anatomy Lesson</li>
<li>The Night Watch</li>
<li>The Naughty Child</li>
</ul>
</aside>
<aside class="footer_links">
<h1 class="text-danger h5">Other Links</h1>
<ul class="list-unstyled">
<li>Complete Self Portraits</li>
<li>Selected Self Portraits</li>
<li>About the Self Portraits</li>
<li>Selected Drawings</li>
<li>About the Drawings</li>
<li>Complete Etchings</li>
<li>Selected Etchings</li>
<li>About the Etchings</li>
</ul>
</aside>
<aside class="footer_img">
<img
class="img-fluid"
src="img/interface-imgs/s9-footer-drawing.jpg"
alt=""
/>
</aside>
</div>
</section>
<!-- s10_copyright -->
<section
id="s10_copyright"
class="text-white bg-dark small my-5 text-center"
>
<p>
©
<script>
document.write(new Date().getFullYear());
</script>
Whatever. All rights reserved.
</p>
</section>
<!-- ------- PRINTS-------- -->
<!-- ------- PRINTS 1-------- -->
<div
class="modal fade"
id="prints1"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/A-Stout-Man-in-a-Large-Cloak_circa-1628.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 2-------- -->
<div
class="modal fade"
id="prints2"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Bald-headed-Old-Man_1630.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 3-------- -->
<div
class="modal fade"
id="prints3"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Bearded-Old-Man-with-a-High-Forehead_circa-1630.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 4-------- -->
<div
class="modal fade"
id="prints4"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Beggar-Man-and-Beggar-Woman-Conversing.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 5-------- -->
<div
class="modal fade"
id="prints5"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Bust-of-an-Old-Bearded-Man_1631.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 6-------- -->
<div
class="modal fade"
id="prints6"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Jerome-Reading-in-the-Wilderness_1634.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 7-------- -->
<div
class="modal fade"
id="prints7"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Joseph’s-Coat-Brought-to-Jacob_circa-1633.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 8-------- -->
<div
class="modal fade"
id="prints8"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Old-Man-with-a-Snub-Nose_circa-1629.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 9-------- -->
<div
class="modal fade"
id="prints9"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Old-Woman-Seated-in-a-Cottage-with-a-String-of-Onions-on-the-Wall_1631.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 10-------- -->
<div
class="modal fade"
id="prints10"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Rembrandt_van_Rijn_-_The_Quacksalver_1635.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 11-------- -->
<div
class="modal fade"
id="prints11"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Self-portrait-in-a-Cap,-Laughing-_1630.jpg"
alt="rembrandt"
class="img-fluid"
/>
</div>
</div>
</div>
</div>
<!-- ------- PRINTS 12-------- -->
<div
class="modal fade"
id="prints12"
tabindex="-1"
role="dialog"
aria-labelledby="rembrandt"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img
src="img/prints-img/prints-700px/Self-portrait-Leaning-Forward_circa-1628.jpg"
alt="rembrandt"