-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (43 loc) · 1.81 KB
/
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
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, initial-scale=1.0">
<title>JiaLin He - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to My Portfolio</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/about.html">About</a></li>
<li><a href="pages/projects.html">Projects</a></li>
<li><a href="pages/resume.html">Resume</a></li>
<li><a href="pages/contact.html">Contact</a></li>
</ul>
</nav>
<main>
<div class="profile-container">
<div class="profile-text">
<h2>About Me</h2>
<p>Hello, my name is JiaLin He. I'm a Computer Science student at the University of Illinois at Urbana-Champaign, expected to graduate in May 2024.
I have a passion for computer vision and machine learning and have contributed to various projects and competitions in these fields.
Besides, I have many experience in database programming and game development.
Feel free to browse my website to learn more about my work and experience!</p>
<p>If you're interested in my work, have any questions, or would like to connect, please don't hesitate to <a href="pages/contact.html">contact me</a>.</p>
</div>
<div class="profile-image">
<img src="img/Profile_img.jpg" alt="JiaLin He" />
</div>
</div>
</main>
<footer>
<p>© 2023 JiaLin He. All rights reserved.</p>
</footer>
<button id="back-to-top" title="Back to top">↑</button>
<script src="utils/main.js"></script>
</body>
</html>