-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
48 lines (42 loc) · 1.39 KB
/
about.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Sean's Website</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script>
// loads header
function loadHeader() {
fetch('nav.html')
.then(response => response.text())
.then(data => {
document.getElementById('replace_with_navbar').outerHTML = data;
});
}
document.addEventListener('DOMContentLoaded', loadHeader);
</script>
</head>
<body>
<div id="replace_with_navbar"></div>
<br><br><br>
<!-- headings -->
<h1>About Me</h1>
<br>
<p>
Hi, I'm Sean Vo, an Applied Physics major at UC Irvine. Here's some things I intend to talk about on this website:
</p>
<ul>
<li>GNU Emacs</li>
<li>My Amateur Cooking Adventures</li>
<li>COBOL (like <a class="link" style="color:yellow" href="https://github.com/otterkit/otterkit">The Otterkit Project</a> or other programming and computing topics</li>
<li>Gaming</li>
<li>Physics</li>
</ul>
<p>
If you're interested, please download my <a class="link" style="color:yellow" href="assets/sean_vo_resume.pdf">resume</a> here.
</p>
<script src="script.js"></script>
<footer><a href="#index.html">↑</a>  <a class="name" href="credit.html">Credits</a></footer>
</body>
</html>