-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.3 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.3 KB
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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Osmond Lin</title>
<style>
.heading {
font-size: 2.4em;
}
body {
margin: 0;
font-family: "Courier New", Courier, monospace;
background: black;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
ul {
list-style: none;
padding: 0;
text-align: center;
}
li {
font-size: 1.7em;
margin: 5px;
}
a {
text-decoration: none;
color: white;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="heading">
Osmond Lin
</div>
<div class="content">
<ul>
<li><a href="home.html">home</a></li>
<li><a href="https://ossielin.github.io/assets/osmond_cv.pdf">cv</a></li>
<li><a href="blog/">blog</a></li>
<li><a href="https://open.spotify.com/user/ccdfx5qdxq8agmuczj50um7ao?si=9b9ad671cc204ae0">music</a></li>
<li><a href="https://github.com/OssieLin" target="_blank">github</a></li>
<li><a href="mailto:osmond0629@gmail.com">email me</a></li>
</ul>
</div>
</body>
</html>