-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (132 loc) · 4.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<link
href="style.css"
rel="stylesheet" />
<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=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet" />
<title>Tribute Page - Albert Einstein</title>
</head>
<body>
<main id="main">
<header>
<h1 id="title">Albert Einstein</h1>
<p>One of the greatest and most influential physicists of all time</p>
</header>
<figure id="img-div">
<img
id="image"
src="https://upload.wikimedia.org/wikipedia/commons/3/3e/Einstein_1921_by_F_Schmutzer_-_restoration.jpg" />
<figcaption id="img-caption">
Portrait by Ferdinand Schmutzer, 1921
</figcaption>
</figure>
<section id="tribute-info">
<h3>Here's a time line of Albert Einstein's life:</h3>
<ul>
<li>
<span id="tribute-bold">1879</span>Born on 14 March in Ulm, Germany
</li>
<li>
<span id="tribute-bold">1880</span>Se traslada con su familia a
Munich
</li>
<li>
<span id="tribute-bold">1885-88</span>Attends a Catholic school
</li>
<li>
<span id="tribute-bold">1889-94</span>Student at the Luitpold
Gymnasium (now the Albert Einstein Gymnasium)
</li>
<li>
<span id="tribute-bold">1894</span>
His family moves to Milan. Einstein leaves the Institute without
completing his studies and goes to Pavia, where he lives with his
family
</li>
<li>
<span id="tribute-bold">1896</span>He renounces his German
citizenship. Admitted to the Polytechnic School in Zurich, where he
completes his studies in 1900
</li>
<li><span id="tribute-bold">1901</span>Obtains Swiss nationality</li>
<li><span id="tribute-bold">1903</span>Marries Mileva Maric</li>
<li>
<span id="tribute-bold">1917</span>Director of the Kaiser Wilhelm
Institute of Physics in Berlin
</li>
<li>
<span id="tribute-bold">1922</span>Awarded 1921 Nobel prize for
Physics.Publishes his first work on the unified field theory.
Becomes member of the League of Nations' Committee on Intellectual
Co-operation. Begins a tour of Europe, Asia, the Middle East, South
America and the United States
</li>
<li>
<span id="tribute-bold">1928</span>Diagnosed with a heart condition
</li>
<li>
<span id="tribute-bold">1952</span>Offered and declines the
presidency of the state of Israel
</li>
<li>
<span id="tribute-bold">1955</span>With Bertrand Russell, draws up a
manifesto against the nuclear threat. On 18 April, Einstein dies at
Princeton hospital as the result of a burst aortic aneurysm in the
abdominal aorta. He was cremated and his ashes scattered into the
Delaware River
</li>
</ul>
<div id="quote">
<span>"</span>
<h4>
Learn from yesterday, live for today, hope for tomorrow. The
important thing is not to stop questioning.
</h4>
<span>"</span>
</div>
<p id="tribute-text">
If you have time, you should read more about this incredible human
being on his
<a
id="tribute-link"
target="_blank"
href="https://en.wikipedia.org/wiki/Albert_Einstein"
>Wikipedia entry</a
>
</p>
</section>
<footer>
<p>
Coded by
<a
target="_blank"
href="https://github.com/wendywo-dev"
>Wendy Wo</a
>
</p>
<p id="ref">
Timeline based on
<a
target="_blank"
href="https://dipc.ehu.eus/en/science-society/albert-einstein/the-man/biography/timeline"
>Texts by Dr. Antonio Moreno González</a
>
</p>
</footer>
</main>
</body>
</html>