-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 956 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Junting Lyu</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>About Me</h1>
</header>
<nav>
<ul>
<li><a href="work-experience.html">Work Experience</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="assignments.html">Assignments</a></li>
</ul>
</nav>
<section>
<h2>Junting Lyu</h2>
<p>Master of Science in Computer Science at Boston University with a strong background in software development and machine learning. Skilled in multiple programming languages and tools.</p>
</section>
<footer>
<p>Contact: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>