-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (71 loc) · 2.37 KB
/
index.html
File metadata and controls
72 lines (71 loc) · 2.37 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Albert Einstein</title>
<style>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
header {
background-color:yellow;
color: blueviolet;
text-align: center;
padding: 20px;
}
main {
background-color: skyblue;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
section {
background-color: rgb(227, 144, 238);
padding: 20px;
margin: 20px 0;
width: 80%;
text-align: center;
}
footer {
background-color: #0b77f3;
color: white;
text-align: center;
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>Albert Einstein</h1>
</header>
<main>
<img src="AEImage.png" alt="Albert Einstein" width="200">
<section>
<h2>About</h2>
<p>He was a German-born theoretical physicist who developed the theory of relativity, one of the two pillars of modern physics. His work is also known for its influence on the philosophy of science.</p>
</section>
<section>
<h2>Papers</h2>
<ul>
<li><a href="https://archive.org/details/in.ernet.dli.2015.547677/page/n3/mode/2up">The Universe and Dr. Einstein-2005</a></li>
<li><a href="https://archive.org/details/einsteinonpoliti0000unse/page/n7/mode/2up">Einstein on politics-2013</a></li>
<li><a href="https://cds.cern.ch/record/405662/files/PhysRev.47.777.pdf">Einstein versus the physical review-2005</a></li>
<li><a href="https://archive.org/details/einsteinonpeace0000otto">Einstein on peace-2017</a></li>
<li><a href="https://archive.org/details/einstein00rona">Einstein: The life and times-2022</a></li>
</ul>
</section>
<section>
<h2>Hobbies</h2>
<p>He would often take a boat out onto a lake, pull out a notebook, relax, and think.</p>
<p>When he was 13-years old, he suddenly changed his mind about the violin when he heard the music of Mozart. With a new passion for playing, Einstein continued to play the violin until the last few years of his life.</p>
</section>
</main>
<footer>
<p>© 2023 Albert Einstein</p>
</footer>
</body>
</html>