-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (52 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1"
/>
<!-- thumbnail -->
<meta
property="og:image"
content="https://raw.githubusercontent.com/kuntiniong/kuntiniong.github.io/main/assets/images/thumbnail.png"
/>
<meta property="og:title" content="Kun Tin | Home" />
<meta property="og:url" content="https://kuntiniong.github.io/" />
<meta property="og:description" content="Personal Website" />
<meta property="og:type" content="website" />
<link rel="stylesheet" type="text/css" href="/assets/css/styles.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/svg.css" />
<!-- gsap library and google svg icons -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=dark_mode,light_mode"
/>
<link rel="icon" href="/assets/images/favicon.png" />
<title>Kun Tin | Home</title>
</head>
<body>
<!-- navigation bar -->
<div class="kuntiniong">
<a href="/">Kun Tin Iong</a>
</div>
<nav class="nav-bar">
<ul class="tab-list">
<li class="tab"><a href="/about">About</a></li>
<li class="tab"><a href="/projects">Projects</a></li>
<li class="tab"><a href="/courses">Courses</a></li>
<li class="tab"><a href="/contact">Contact</a></li>
<!-- dark mode toggle -->
<button class="dark-mode-button" id="darkModeToggle">
<span class="material-symbols-outlined"> dark_mode </span>
</button>
</ul>
</nav>
<!-- home -->
<section id="home"></section>
<script src="/assets/js/home.js"></script>
<script src="/assets/js/dark-mode.js"></script>
<script src="/assets/js/animation.js"></script>
</body>
</html>