-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My personal website">
<title>Nicholas Matthew Saw</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/png" href="/images/favicon-black-128x128.png">
</head>
<body>
<!-- Header -->
<header>
<ul>
<li><a href="">Nicholas Matthew Saw</a></li>
</ul>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- Home -->
<section>
<h1>Hi, I'm Nicholas</h1>
<p>A first year Computer Science student at UNSW</p>
</section>
<!-- About Me -->
<section id="about">
<h2>About Me</h2>
<p>I am a Computer Science student at UNSW who thrives on continuous learning and is always hungry for new challenges and knowledge. I excel in attention to detail, teamwork, and navigating analytical puzzles with organized finesse. Let's connect and explore together!</p>
</section>
<!-- Contact -->
<section id="contact">
<h2>Contact</h2>
<ul>
<li>Email: [email protected]</li>
<li><a class="zoom" href="https://github.com/nicsaw" target="_blank" rel="noopener noreferrer"><img src="./images/logo-github.svg" alt="github logo" width="100" height="100"></a></li>
<li><a class="zoom" href="https://www.linkedin.com/in/nicholas-matthew-saw-aa73aa232/" target="_blank" rel="noopener noreferrer"><img src="./images/logo-linkedin.svg" alt="linkedin logo" width="100" height="100"></a></li>
<li><a class="zoom" href="https://www.instagram.com/nicholas_matthew_saw/" target="_blank" rel="noopener noreferrer"><img src="./images/logo-instagram.svg" alt="instagram logo" width="100" height="100"></a></li>
</ul>
</section>
</main>
<!-- Footer -->
<footer>
<p>© <script>document.write(new Date().getFullYear())</script> Nicholas Matthew Saw. All Rights Reserved.</p>
</footer>
</body>
</html>