-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
73 lines (66 loc) · 2.45 KB
/
template.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<!-- TOP NAVIGATION AND SIDEBAR-->
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Home</a>
<a href="about.html">About</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="artwork.html">Artwork</a>
<a href="resume.html">CV</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div style="padding-left:16px" class='container'>
<div class='sidebar'>
<div class='sidebar-text'>
<img class="headshot" src="assets/hs1.png" alt='Headshot'>
</div>
<div class='sidebar-text'>
<h2>Abigail Dommer, PhD</h2>
<p>Computational Chemist<br>Postdoctoral Scholar<br>Laboratory of Dr. Rommie Amaro<br>UC San Diego<br>acdommer@gmail.com</p>
</div>
<div>
<canvas id='sars'>
<script type="text/javascript" src="js/scroll.js"></script>
</canvas>
</div>
</div>
<!-- start content here-->
<div class='content'>
<h1>Pushing the Limits of HPC with Computational Microscopy</h1>
</div>
<!-- END CONTAINER DIV -->
</div>
<!-- SCRIPT FOR SARS -->
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<!-- FOOTER -->
<div class='footer'>
<ul><h2>
<li><a class='footer-text'>Follow:</a></li>
<li><a href='#'><img src='assets/instagram.png'>Instagram</a></li>
<li><a href='#'><img src='assets/twitter.png'>Twitter</a></li>
<li><a href='#'><img src='assets/linkedin.png'>LinkedIn</a></li>
<li><a href='#'><img src='assets/github.png'>Github</a></li>
</h2></ul>
<p>© Abigail C Dommer 2023</p>
</div>
</body>
</html>