-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
67 lines (62 loc) · 2.75 KB
/
notes.html
File metadata and controls
67 lines (62 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Austin Ellis | Notes</title>
<meta
name="description"
content="Notes page for Austin Ellis. Study notes and class summaries will be posted here."
>
<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=Fraunces:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="site-shell">
<header class="site-header reveal" style="--delay: 0ms;">
<a class="brand" href="index.html">Austin Ellis</a>
<div class="header-links" aria-label="Quick header links">
<a href="mailto:austin.ellis.386@my.csun.edu">Email</a>
<a href="AustinEllisCV.pdf" target="_blank" rel="noopener">CV</a>
</div>
</header>
<main class="page">
<nav class="tabs reveal" style="--delay: 30ms;" aria-label="Portfolio tabs">
<a class="tab" href="index.html">About</a>
<a class="tab" href="updates.html">Recent News / Updates</a>
<a class="tab" href="publications.html">Publications</a>
<a class="tab" href="posters.html">Posters</a>
<a class="tab" href="slides.html">Slides</a>
<a class="tab" href="blog.html">Blog</a>
<a class="tab is-active" href="notes.html" aria-current="page">Notes</a>
</nav>
<section class="panel reveal" style="--delay: 80ms;" aria-labelledby="notes-title">
<h1 class="panel-title" id="notes-title">Notes</h1>
<p class="panel-subtitle">Study notes and summaries will be collected here.</p>
<div class="updates-list">
<article class="update-item reveal" style="--delay: 120ms;">
<p>
Since much of my formal training has been in pharmacology and chemistry, I have done a lot of
self-study online to fill in gaps. I hope to upload notes from MIT OpenCourseWare classes I have
taken in the near future, but first I need to rewrite and polish them in LaTeX. Right now, writing up
my M.S. thesis has higher priority.
</p>
</article>
</div>
</section>
</main>
<footer class="site-footer">
<p>© <span id="year"></span> Austin Ellis</p>
<a href="index.html">Next tab: About</a>
</footer>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>