-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
41 lines (31 loc) · 924 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<title>About Me</title>
</head>
<body>
<div class="nav-container">
<nav>
<a href="index.html">Home</a>
<!-- <a href="research.html">Research</a> -->
<a href="about.html">CV</a>
</nav>
</div>
<main>
<div id="main-content">
<p>Under construction...</p>
</div>
</main>
<footer>
<a class="icon-link" target="_blank" href="https://github.com/shunzi-work">
<image src="img/icons/github-mark.svg" class="footer-icon" />
</a>
<a class="icon-link" href="mailto:[email protected]">
<image src="img/icons/email.svg" class="footer-icon" />
</a>
</footer>
</body>
</html>