-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
32 lines (31 loc) · 1.27 KB
/
resume.html
File metadata and controls
32 lines (31 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>About-tomxia</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="styles.css">
<body>
<nav>
<a class="navitem" href="index.html" style="text-decoration:underline">Home</a>
<a class="navitem_cur">Resume</a>
<a class="navitem" href="photos.html" style="text-decoration:underline">Photos</a>
<a class="navitem" href="projects.html" style="text-decoration:underline">Projects</a>
</nav>
<section>
<h1>About me</h1>
<main class="content">
<ul class="education">
<h2>Education</h2>
<li class="university">University of Science and Technology Beijing</li>
<p class="degree">Applied Physics, September 2019 - May 2021</p>
<li class="university">University of Wisconsin – Madison</li>
<p class="degree">B.S. Major in Computer Engineering, Computer Science, September 2021</p>
</ul>
</main>
</section>
<footer style="text-align: center;">
<p>© 2024 tomxia.github.io</p>
<a href="https://github.com/TomXia" alt="My github profile page.">GitHub</a>
</footer>
</body>
</html>