forked from kristinaay/kristinaay.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en" class="theme-dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Kristina Yin" />
<meta name="description" content="The homepage for the website." />
<link rel="icon" type="image/x-icon" href="Images/favicon.ico" />
<title>Kristina Yin</title>
<link rel="stylesheet" href="CSS/main.css" />
<link
href="https://fonts.googleapis.com/css2?family=Abhaya+Libre&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1 class="kristina">Kristina Yin</h1>
</header>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contactme.html">Contact</a></li>
</ul>
</div>
<label class="switch">
<input type="checkbox" onchange="changeTheme()" />
<span class="slider"></span>
</label>
<script src="JS/theme.js"></script>
</body>
</html>