-
Notifications
You must be signed in to change notification settings - Fork 0
/
reference.html
46 lines (46 loc) · 2.42 KB
/
reference.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prof. Richard J. Goldstein</title>
<link rel="stylesheet" href="style.css">
<style>
body{
overflow-y:scroll;
}
</style>
</head>
<body>
<header class="header1">
<h3 class="logo"><a href="index.html" style="text-decoration: none; color: black">Academic Lineage of Richard J. Goldstein</a></h3>
<div class="hamburger-menu" onclick="toggleNavbar()">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
<nav class="navbar">
<a href="reference.html">References</a>
<a href="contact.html">Contact Us</a>
<a href="team.html">Team</a>
</nav>
</header>
<div class="huh">H</div>
<div class="reference">
<h3 style="margin-left: 16px;">References</h3>
<ul style="font-size: 17px;">
<li>[1] “Mathematics Genealogy Project,” North Dakota State University, Department of Mathematics, Fargo, North Dakota, <a target="_blank" href="https://genealogy.math.ndsu.nodak.edu/">https://genealogy.math.ndsu.nodak.edu/</a></li>
<li>[2] “History of TUM Physics Department Web Site,” Technical University of Munich, Munich, Germany, <a target="_blank" href="https://www.ph.nat.tum.de/en/ph/about/history/">https://www.ph.nat.tum.de/en/ph/about/history/</a></li>
<li>[3] <a target="_blank" href="https://academictree.org/etree/peopleinfo.php?pid=816461">https://academictree.org/etree/peopleinfo.php?pid=816461</a></li>
<li>[4] <a href="https://mathshistory.st-andrews.ac.uk/">https://mathshistory.st-andrews.ac.uk/</a></li>
<li>[5] Used <a target="_blank" href="https://d3js.org">D3.js</a>. A Javascript library for producing dynamic, interactive data visualisations.</li>
</ul>
</div>
<footer style="width: 100%;font-size: 0.8em; padding: 12px; position: fixed;bottom: 0;left: 50%;transform: translateX(-50%);"><center>Concept by Dr. John N. Shadid (Sandia National Labs) and Dr. Umesh Madanan (IIT Kanpur)<br>Developed by Naman Kumar Jaiswal and Sameer Yadav (IIT Kanpur)</center></footer>
<script>
function toggleNavbar() {
document.querySelector('.navbar').classList.toggle('show-menu');
}
</script>
</body>
</html>