-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (79 loc) · 4.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Russo+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styling.css">
<title>Tribute Page - S. Ramanujan</title>
</head>
<body>
<main id="main">
<!-- Header title and subtitle-->
<header>
<h1 id="title">Srinivasa Iyengar Ramanujan</h1>
<p id="subtitle">The man who knew infinity</p>
</header>
<!-- Image div and image caption-->
<div id="img-div">
<img id="image" src="img/ramanujan_at_cambridge.jpg" alt="S. Ramanujan photo">
<p id="img-caption">Srinivasa Ramanujan (middle) with fellow scientists at Cambridge.</p>
</div>
<!-- Timeline div-->
<div id="tribute-info">
<h3>Here's a timeline of S. Ramanujan:</h3>
<ul id="timeline-ul">
<li><strong>1887</strong> - Born In Erode, Tamil Nadu, on December 22</li>
<li><strong>1903</strong> - Passes Matriculation examination from Town High School, Kumbakonam</li>
<li><strong>1904</strong> - Joins Government Arts College, Kumbakonam</li>
<li><strong>1905</strong> - Drops out of Kumbakonam college</li>
<li><strong>1906</strong> - Joins Pachaiyappa’s College, Madras, only to leave without completing his
studies</li>
<li><strong>1911</strong> - Publishes first paper on Bernoulli Numbers</li>
<li><strong>1912</strong> - Gets a job at the Madras Port Trust. Ramanujan is introduced to G.H. Hardy’s
tract on ‘Orders of Infinity.’ He provides an answer to one of the problems posed by Hardy</li>
<li><strong>1913</strong> - Ramanujan writes his first letter to Hardy. Hardy recognises Ramanujan as ‘a
mathemacian of the highest class,’and tries to organise a visit by Ramanujan to England</li>
<li><strong>1914</strong> - E.H. Neville, a Fellow of Trinity College, Cambridge meets Ramanujan in
Madras and convinces him to go to Cambridge. Neville writes to University of Madras to support
Ramanujan. University of Madras offers Ramanujan scholarship. On March 17, leaves for England</li>
<li><strong>1916</strong> - Gets B.A. degree by research from Cambridge University</li>
<li><strong>1917</strong> - Periodically hospitalised for treatment</li>
<li><strong>1918</strong> - Becomes Fellow of the Royal Society. Elected to Trinity College Fellowship
</li>
<li><strong>1919</strong> - Returns to India</li>
<li><strong>1920</strong> - Health deteriorates. Dies on April 26, 1920</li>
<li><strong>1927</strong> - Collected papers of Ramanujan, edited by P.V. Seshu Aiyar, G.H. Hardy and
B.M. Wilson and published by Cambridge University Press</li>
</ul>
</div>
<!-- Movie div -->
<div id="movie-div">
<h3>The Man Who Knew Infinity - Movie</h3>
<iframe id="embed_movie" src="https://www.youtube.com/embed/8WwLPep9xNg"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<!-- Quote div -->
<div id="quote-div">
<h3>His Beautiful Quote</h3>
<p>
“An equation for me has no meaning, unless it expresses a thought of God.”
<p>― Srinivasa Ramanujan</p>
</p>
</div>
<!-- More Reading div -->
<div id="more-reading">
<p>
You may <a id="tribute-link" href="https://en.wikipedia.org/wiki/Srinivasa_Ramanujan" target="_blank">read more about this incredible man</a> from this Wikipedia entry.
</p>
<p>
Thank you for Visiting.
</p>
<p>
Build with <img id="heart" src="https://raw.githubusercontent.com/JoykishanSharma/Tirbute-Page-Srinivasa-Ramanujan/master/img/heart.gif" alt="heart"> by <a href="https://github.com/JoykishanSharma" target="_blank">Joykishan Sharma.</a>
</p>
</div>
</main>
</body>
</html>