-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
66 lines (65 loc) · 1.9 KB
/
research.html
File metadata and controls
66 lines (65 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Murray S. Bennett - Research</title>
<link rel="stylesheet" href="style.css" />
<style>
h3 {
margin-top: 20px;
font-size: 1.2em;
}
</style>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html" class="current-page">Research</a></li>
<li><a href="demos.html">Experiment Demos</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="cv.html">CV</a></li>
</ul>
</nav>
</header>
<main>
<h1 style="text-align: center">Research</h1>
<p style="text-align: center">
<a href="https://orcid.org/0000-0001-7309-4915" target="_blank"
>ORCID ID: 0000-0001-7309-4915</a
>
</p>
<hr />
</main>
<footer>
<hr />
<p>
<a href="mailto:bennett.1755@osu.edu"
><i class="fas fa-envelope"></i> Email</a
>
|
<a href="https://orcid.org/0000-0001-7309-4915" target="_blank"
><i class="fab fa-orcid"></i> ORCID</a
>
|
<a href="https://github.com/MurraySBennett" target="_blank"
><i class="fab fa-github"></i> GitHub</a
>
</p>
<p>© <span id="current-year"></span> Murray S. Bennett</p>
</footer>
<script>
document.getElementById("current-year").textContent =
new Date().getFullYear();
</script>
</body>
</html>