-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (62 loc) · 2.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Zexi Gong">
<meta name="description" content="Zexi Gong's personal homepage">
<link rel="icon" href="images/author-icon.png" type="image/x-icon">
<title>Zexi Gong - Homepage</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<div class="container">
<h1>Welcome to Zexi Gong's Homepage</h1>
<nav class="navbar">
<ul>
<li><a href="/">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="experience.html">Professional Experience</a></li>
</ul>
</nav>
</div>
</header>
<section class="content">
<div class="row container">
<div class="col-md-8">
<h2>About Me</h2>
<h4>Education</h4>
<ul>
<li>Master of Computer Science student at Northeastern University</li>
<li>GPA : 4.0/4.0</li>
<li>Courses: Object Oriented Design, Discrete and Data Structures, Intensive Foundations of Computer Science</li>
</ul>
<h4>Skills</h4>
<p>
Programming languages: Python | JavaScript | Java | HTML | CSS | C/C++ | Matlab | SQL | R<br>
Technical frameworks & tools: MERN | Node.js | Django | Linux | Git | React.js | Vue | MongoDB | Numpy | Pandas<br>
</p>
</div>
<div class="col-md-4 ">
<h2>Contact</h2>
<div class="contact-photo">
<img src="images/GZX11.jpg" alt="Zexi Gong" class="img-thumbnail"/>
</div>
<ul>
<li>Phone: (510)-634-8903</li>
<li>Email: <a href="mailto:zexi.gong721@gmail.com">zexi.gong721@gmail.com</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/zexi-gong/" target="_blank">LinkedIn Profile</a></li>
</ul>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2023 Zexi Gong</p>
</div>
</footer>
<script src="script/custom.js"></script>
</body>
</html>