-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>sam1037's Personal Website</title>
<link rel="stylesheet" href="styles/style.css">
<script src="app.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
</header>
<nav class="nav-bar">
<a href="index.html" class="nav-logo">SAM1037</a>
<ul class="nav-menu">
<li class="nav-item"><a class="nav-link" href="index.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="projects.html">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="course_review.html">CUHK course reviews</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<main>
<article>
<h1>About this website</h1>
<p>Welcome to the personal website of sam1037! The owner of this website is currently a year 3 student majoring in Computer Science at the Chinese University of Hong Kong (CUHK). </p>
<p>The goal of making this website is to learn the basics of web programming,
and to demostrate my <a href="projects.html">projects</a>.</p>
<h2 style="margin-bottom: 0rem;">Contacts</h2>
<ul class="contact-info">
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Linkedin: <a href="https://www.linkedin.com/in/ka-shing-ngai-2a5a96223/">here</a></li>
<li>Github: <a href="https://github.com/sam1037">sam1037</a></li>
</ul>
</article>
</main>
<footer>
Personal website of sam1037. Copyright: © 2024 K.S. Ngai.
</footer>
</body>
</html>