-
Notifications
You must be signed in to change notification settings - Fork 0
/
application3.html
692 lines (628 loc) · 18.6 KB
/
application3.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
<!Doctype html>
<head>
<title>Introduction</title>
</head>
<style>
body{
margin: 10px;
background-color: #F5F9E9;
margin-bottom: 60%;
height: 500%;
}
header{
background-image: url(https://www.macobserver.com/wp-content/uploads/2019/05/workfeatured-data.jpg)
;
height: 80vh;
width: 93vw;
overflow: hidden;
margin: 10px 20px 0px 0px;
left: 100px;
padding: 20px;
text-align: center;
color: white;
}
h1{
padding: 90px 60px 20px 60px;
font-size: 70px;
top: 50%;
}
h2{
font-size: 50px;
}
.header-img{
background-image: url(https://www.goldennumber.net/wp-content/uploads/golden-ratio-overview-360x200.gif);
height: 32vh;
width: 32vw;
margin: 60px 10px 10px 350px;
}
.architecture{
background-color:#C2C1A5;
transform: translate(-0%, 55%); -ms-transform: translate(-50%,-50%);
}
.architecture h1{
font-size: 40px;
float: center;
padding: 10px 400px 10px;
}
/*for card 1,2,3*/
.card-container{
background: #FFFFFF;
display: inline-block;
top: 100%;
transition: 0.5s;
transform: translate( 5%, 15%); -ms-transform: translate(-50%,-50%);
height: 60vh;
width: 28.5vw;
margin-top: 0.5vh;
margin-left: 19px;
margin-right: 5px;
border-radius: 15px 15px 15px 15px;
border: solid #000000;
}
.card-image{
background:#fff;
height: 46%;
width: 100%;
border-radius: 15px 15px 15px 15px;
}
.card-image img{
height: 100%;
width: 100%;
border-radius: 15px 15px 0px 0px;
}
.card-details p{
text-align: center;
font-weight: bold;
font-size: 20px;
padding: 0px 0px;
height: 2px;
}
.idea p{
font-weight: normal;
float: left;
font-size: 17px;
line-height: 20px;
padding: 35px 10px;
}
.card-container:hover{
box-shadow: 0 10px 16px 10px rgba(0,0,0,0.2);
}
/*for card 4*/
.card-container4{
background: #FFFFFF;
display: inline-block;
top: 100%;
transition: 0.5s;
transform: translate( 55%, 25%); -ms-transform: translate(-50%,-50%);
height: 60vh;
width: 28.5vw;
margin-top: 0.5vh;
margin-left: 19px;
margin-right: 5px;
border-radius: 15px 15px 15px 15px;
border: solid #000000;
}
.card-image{
background:#fff;
height: 46%;
width: 100%;
border-radius: 15px 15px 15px 15px;
}
.card-image img{
height: 100%;
width: 100%;
border-radius: 15px 15px 0px 0px;
}
.card-details{
text-align: left;
font-weight: bold;
font-size: 20px;
padding: 1px 15px;
height: 2px;
}
.idea p{
font-weight: normal;
float: left;
font-size: 17px;
line-height: 20px;
}
.card-container4:hover{
box-shadow: 0 10px 16px 10px rgba(0,0,0,0.2);
}
/*for card 5*/
.card-container5{
background: #FFFFFF;
display: inline-block;
top: 100%;
transition: 0.5s;
transform: translate( 60%, 25%); -ms-transform: translate(-50%,-50%);
height: 60vh;
width: 28.5vw;
margin-top: 0.5vh;
margin-left: 19px;
margin-right: 5px;
border-radius: 15px 15px 15px 15px;
border: solid #000000;
}
.card-image{
background:#fff;
height: 46%;
width: 100%;
border-radius: 15px 15px 15px 15px;
}
.card-image img{
height: 100%;
width: 100%;
border-radius: 15px 15px 0px 0px;
}
.card-details{
text-align: left;
font-weight: bold;
font-size: 20px;
padding: 1px 15px;
height: 2px;
}
.idea p{
font-weight: normal;
float: left;
font-size: 17px;
line-height: 20px;
}
.card-container5:hover{
box-shadow: 0 10px 16px 10px rgba(0,0,0,0.2);
}
/*art and design*/
.art{
background-color: #C2C1A5;
transform: translate( 0%, 350%); -ms-transform: translate(-50%,-50%);
}
.art h1{
font-size: 40px;
float: center;
padding: 10px 400px 10px;
}
/*for card 1,2,3*/
.card-container1{
background: #FFFFFF;
display: inline-block;
top: 100%;
transition: 0.5s;
transform: translate( 5%, 70%); -ms-transform: translate(-50%,-50%);
height: 60vh;
width: 28.5vw;
margin-top: 0.5vh;
margin-left: 19px;
margin-right: 5px;
border-radius: 15px 15px 15px 15px;
border: solid #000000;
}
.card-image{
background:#fff;
height: 46%;
width: 100%;
border-radius: 15px 15px 15px 15px;
}
.card-image img{
height: 100%;
width: 100%;
border-radius: 15px 15px 0px 0px;
}
.card-details p{
text-align: center;
font-weight: bold;
font-size: 20px;
padding: 0px 0px;
height: 2px;
}
.idea p{
font-weight: normal;
float: left;
font-size: 17px;
line-height: 20px;
padding: 35px 10px;
}
.card-container1:hover{
box-shadow: 0 10px 16px 10px rgba(0,0,0,0.2);
}
/*for card 4*/
.card-container2{
background: #FFFFFF;
display: inline-block;
top: 100%;
transition: 0.5s;
transform: translate( 55%, 80%); -ms-transform: translate(-50%,-50%);
height: 60vh;
width: 28.5vw;
margin-top: 0.5vh;
margin-left: 19px;
margin-right: 5px;
border-radius: 15px 15px 15px 15px;
border: solid #000000;
}
.card-image{
background:#fff;
height: 46%;
width: 100%;
border-radius: 15px 15px 15px 15px;
}
.card-image img{
height: 100%;
width: 100%;
border-radius: 15px 15px 0px 0px;
}
.card-details{
text-align: left;
font-weight: bold;
font-size: 20px;
padding: 1px 15px;
height: 2px;
}
.idea p{
font-weight: normal;
float: left;
font-size: 17px;
line-height: 20px;
}
.card-container2:hover{
box-shadow: 0 10px 16px 10px rgba(0,0,0,0.2);
}
/*for card 5*/
.card-container3{
background: #FFFFFF;
display: inline-block;
top: 100%;
transition: 0.5s;
transform: translate( 60%, 80%); -ms-transform: translate(-50%,-50%);
height: 60vh;
width: 28.5vw;
margin-top: 0.5vh;
margin-left: 19px;
margin-right: 5px;
border-radius: 15px 15px 15px 15px;
border: solid #000000;
}
.card-image{
background:#fff;
height: 46%;
width: 100%;
border-radius: 15px 15px 15px 15px;
}
.card-image img{
height: 100%;
width: 100%;
border-radius: 15px 15px 0px 0px;
}
.card-details{
text-align: left;
font-weight: bold;
font-size: 20px;
padding: 1px 15px;
height: 2px;
}
.idea p{
font-weight: normal;
float: left;
font-size: 17px;
line-height: 20px;
}
.card-container3:hover{
box-shadow: 0 10px 16px 10px rgba(0,0,0,0.2);
}
/*nature*/
.nature{
background-color: #C2C1A5;
transform: translate( 0%, 670%); -ms-transform: translate(-50%,-50%);
}
.nature h1{
font-size: 40px;
float: center;
padding: 10px 450px 10px;
}
/*for card 1,2,3*/
.card-container7{
background: #FFFFFF;
display: inline-block;
top: 100%;
transition: 0.5s;
transform: translate( 5%, 125%); -ms-transform: translate(-50%,-50%);
height: 60vh;
width: 28.5vw;
margin-top: 0.5vh;
margin-left: 19px;
margin-right: 5px;
border-radius: 15px 15px 15px 15px;
border: solid #000000;
}
.card-image{
background:#fff;
height: 46%;
width: 100%;
border-radius: 15px 15px 15px 15px;
}
.card-image img{
height: 100%;
width: 100%;
border-radius: 15px 15px 0px 0px;
}
.card-details p{
text-align: center;
font-weight: bold;
font-size: 20px;
padding: 0px 0px;
height: 2px;
}
.idea p{
font-weight: normal;
float: left;
font-size: 17px;
line-height: 20px;
padding: 35px 10px;
}
.card-container7:hover{
box-shadow: 0 10px 16px 10px rgba(0,0,0,0.2);
}
.theme-btn{
font-size: 20px;
border-radius: 20px;
min-width: 80px;
border: 2px solid black;
color: black;
text-align: center;
position: relative;
bottom: -560px;
left: 47%;
background-color: #FF4F79;
transform: translate( 150%, 1800%); margin: 5px -5px 50px;
padding: 15px 40px;
cursor: pointer;
}
.theme-btn:hover{
background: #FF858D;
}
@media only screen and (min-width: 400px){
body{
margin-bottom: 60%;
height: 100%;
width: 100%;
}
header{
height: 100%;
}
h1{
padding: 90px 60px 20px 60px;
top: 50%;
}
h2{
padding: 0px 60px 90px 60px;
}
.header-img{
padding: 10px 30px 10px 50px;
margin: 60px 10px 10px 350px;
width: 28%;
height: 15%;
}
.architecture{
transform: translate(-0%, 55%); -ms-transform: translate(-50%,-50%);
}
.architecture h1{
padding: 1% 38% ;
}
/*for card 1,2,3*/
.card-container{
top: 100%;
-ms-transform: translate(-50%,-50%);
height: 35%;
width: 30%;
}
/*for card 4*/
.card-container4{
transform: translate( 55%, 25%); -ms-transform: translate(-50%,-50%);
height: 35%;
width: 30%;
}
/*for card 5*/
.card-container5{
transform: translate( 60%, 25%); -ms-transform: translate(-50%,-50%);
height: 35%;
width: 30%;
}
/*art and design*/
.art{
transform: translate( 0%, 350%); -ms-transform: translate(-50%,-50%);
}
.art h1{
padding: 1% 38% ;
}
/*for card 1,2,3*/
.card-container1{
transition: 0.5s;
transform: translate( 5%, 70%); -ms-transform: translate(-50%,-50%);
height: 35%;
width: 30%;
}
/*for card 4*/
.card-container2{
transform: translate( 55%, 80%); -ms-transform: translate(-50%,-50%);
height: 35%;
width: 30%;
}
/*for card 5*/
.card-container3{
transform: translate( 60%, 80%); -ms-transform: translate(-50%,-50%);
height: 35%;
width: 30%vw;
}
/*nature*/
.nature{
transform: translate( 0%, 670%); -ms-transform: translate(-50%,-50%);
}
.nature h1{
float: center;
padding: 1% 38%;
}
/*for card 1,2,3*/
.card-container7{
transform: translate( 5%, 125%); -ms-transform: translate(-50%,-50%);
height: 35%;
width: 30%;
}
.theme-btn{
font-size: 20px;
border-radius: 20px;
min-width: 80px;
border: 2px solid black;
color: black;
text-align: center;
position: relative;
bottom: -650px;
left: 47%;
transform: translate( 150%, 1800%); margin: 5px -5px 50px;
padding: 15px 40px;
cursor: pointer;
}
}
</style>
<body>
<header>
<h1>Golden Ratio!!</h1>
<h2>Applications</h2>
</header>
<div class="header-img">
</div>
<div class="architecture">
<h1>Architecture</h1>
</div>
<section class="content" id="intro">
<div class="card-container">
<div class="card-image"><img src="https://tse3.mm.bing.net/th?id=OIP.zYHppOJ1jiQYBsbQwOFUyQHaE7&pid=Api&P=0&w=236&h=158" alt="thumbnail">
</div>
<div class="card-details"><p>The Parthenon</p>
</div>
<div class="idea">
<p>The ancient Greek Euclid ((365–300 BC) wrote of it in “Elements” as the “dividing a line in the extreme and mean ratio.” The Parthenon, built in 447 to 438 BC, appears to use it in some aspects of its design to achieve beauty and balance its design.</p>
</div>
</div>
<div class="card-container">
<div class="card-image"><img src="https://tse1.mm.bing.net/th?id=OIP.1AWbsYjzZDwWRuqcP64OaAHaFn&pid=Api&P=0&w=214&h=163" alt="thumbnail">
</div>
<div class="card-details">
<p>The Taj Mahal</p>
</div>
<div class="idea">
<p>Renaissance artists of the 1500’s in the time of Leonardo Da Vinci knew it as the Divine Proportion. In India, it was used in the construction of the Taj Mahal, which was completed in 1648.</p>
</div>
</div>
<div class="card-container">
<div class="card-image"><img src="https://tse2.mm.bing.net/th?id=OIP.binZkwGrr-DW_pLCeKYA6QHaE8&pid=Api&P=0&w=263&h=176" alt="thumbnail">
</div>
<div class="card-details"><p>Notre Dame</p>
</div>
<div class="idea">
<p>Notre Dame in Paris, which was built in between 1163 and 1250 appears to have golden ratio proportions in a number of its key proportions of design. Although it is rather asymmetrical in its design and difficult to measure photographically because of parallax distortions.
</p>
</div>
</div>
<div class="card-container4">
<div class="card-image"><img src="https://2.bp.blogspot.com/_dHj0_yTcK4Q/S-WmBcyNs7I/AAAAAAAAB2Y/WaqSD5UNNRQ/s1600/great-pyramid-cc-romsrini.jpg" alt="thumbnail">
</div>
<div class="card-details"><p>Great Pyramid Of Giza</p></div>
<div class="idea">
<p>There are many pyramid theories and questions as to who built the pyramids in ancient Egypt. It’s commonly known though in Egyptology that the proportions of the Great Pyramid of Egypt are within inches of a golden ratio-based pyramid. </p>
</div>
</div>
<div class="card-container5">
<div class="card-image"><img src="https://tse1.mm.bing.net/th?id=OIP.4cBoA6QD6R2ohNAP8D8sJAAAAA&pid=Api&P=0&w=220&h=147" alt="thumbnail">
</div>
<div class="card-details"><p>Great Mosque of Kairouan</p></div>
<div class="idea">
<p>The geometry analysis of the mosque was first performed at the Great Mosque of Kairouan, in Tunisia. Research that the Golden Section applied to a mosque found around 670 M may be used as a guide for reconstruction (Boussora, 2004).</p>
</div>
</div>
</section>
<div class="art">
<h1>Art & Design</h1>
</div>
<section class="content" id="intro">
<div class="card-container1">
<div class="card-image"><img src="https://tse2.mm.bing.net/th?id=OIP.CoSGTNOQPkS7BWhEV_Qr3AAAAA&pid=Api&P=0&w=300&h=300" alt="thumbnail">
</div>
<div class="card-details"><p>Divine Proportion</p>
</div>
<div class="idea">
<p>Perhaps one of the best illustrations of its use is in “The Last Supper,” painted between 1494 and 1498. Various design and architectural features show very clear golden ratios. Some believe that even the positions of the disciples around the table were placed in divine proportions to Jesus.</p>
</div>
</div>
<div class="card-container1">
<div class="card-image"><img src="https://static.wiliam.com.au/blog/monalisa.jpg" alt="thumbnail">
</div>
<div class="card-details">
<p>The Mona Lisa</p>
</div>
<div class="idea">
<p>The Mona Lisa has many golden rectangles throughout the painting.By drawing rectgle around her face,we can see that it is indeed golden.If we divide that rectangle with a line drawn across her eyes,we get another golden rectagle,meaning that the proportion of her head length to her eyes is golden.</p>
</div>
</div>
<div class="card-container1">
<div class="card-image"><img src="https://news.artnet.com/app/news-upload/2015/08/the-sacrament-of-the-last-supper-1955.jpgLarge.jpg">
</div>
<div class="card-details"><p>The Sacrament of Last Supper</p>
</div>
<div class="idea">
<p>The Surrealist painter, Salvador Dali, famous for his paintings that depict the dream-like worlds of our subconscious, in his painting The Sacrament of the Last Supper, displayed his knowledge about the golden ration.
</p>
</div>
</div>
<div class="card-container2">
<div class="card-image"><img src="https://i.insider.com/52335f2cecad04ad46c8a356" alt="thumbnail">
</div>
<div class="card-details"><p>Logo Design</p></div>
<div class="idea">
<p>You can also use the golden ratio to add aesthetic appeal directly to a company’s branding. Even if the logo itself isn’t shaped like a golden rectangle or triangle, it can still employ elements that use golden proportions. </p>
</div>
</div>
<div class="card-container3">
<div class="card-image"><img src="https://tse1.mm.bing.net/th?id=OIP.ow_2xILe_n9RUY33Nz7_vwHaD1&pid=Api&P=0&w=308&h=160" alt="thumbnail">
</div>
<div class="card-details"><p>General Layout</p></div>
<div class="idea">
<p>Once again, using a golden spiral to inform your graphic design’s layout is a lot like using the rule of thirds grid you want the focus of the design to be centered on the spiral, using the golden rectangles as division lines for the placement of visual elements. </p>
</div>
</div>
</section>
<div class="nature">
<h1>Nature</h1>
</div>
<section class="content" id="intro">
<div class="card-container7">
<div class="card-image"><img src="https://i.pinimg.com/736x/df/c5/32/dfc5323b3c3ffa737533dda4022e927c--spirals-in-nature-fibonacci-spiral.jpg" alt="thumbnail">
</div>
<div class="card-details"><p>The Pine Cone</p>
</div>
<div class="idea">
<p>Perhaps the most compelling evidence of the Golden Ratio in nature are in pine cones. Whether or not you actually believe that the Golden Rectangle is prevalent in nature, pine cone spirals bear striking resemblance to the Fibonacci Sequence either way. </p>
</div>
</div>
<div class="card-container7">
<div class="card-image"><img src="https://thumbs.dreamstime.com/t/romanesco-broccoli-close-up-fractal-vegetable-known-s-connection-to-fibonacci-sequence-golden-ratio-132954304.jpg" alt="thumbnail">
</div>
<div class="card-details">
<p>Romanesco Broccoli</p>
</div>
<div class="idea">
<p>The Romanesco Broccoli is probably the most visually stunning vegetable on Earth. Its an almost perfect example of naturally occurring fractal reminiscent of the famous Fibonnacci Golden Ratio</p>
</div>
</div>
<div class="card-container7">
<div class="card-image"><img src="http://www.earthintransition.org/wp-content/uploads/2012/08/nautilus-golden-ratio-080212.gif" alt="thumbnail">
</div>
<div class="card-details"><p>The Shell Of Nautilus</p>
</div>
<div class="idea">
<p>A marvelous example of the golden ratio is found in the nautilus shell. The spirals and proportions of a nautilus present the perfect golden ratio. Its specific properties are represented in what is called a golden rectangle.
</p>
</div>
</div>
</section>
<a href="https://samdid.github.io/Math/"div class="theme-btn">Next ></a>
</body>
</html>