-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (52 loc) · 2 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
61
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Qingfan Wu - 吴庆帆</title>
<!-- Favicon icon -->
<link rel="shortcut icon" type="image/png" href="images/favicon-semibold.png">
<!-- External dependencies -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<link href="https://fonts.googleapis.com/css?family=Pacifico|Montserrat:400,700|Varela+Round" rel="stylesheet" type="text/css">
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="fullscreen-bg">
<div class="fullscreen-bg__overlay"></div>
<video loop autoplay muted webkit-playsinline playsinline class="fullscreen-bg__video"
poster="./images/curtain.jpg">
<source src="./videos/curtain.mp4" type="video/mp4">
</video>
</div>
<header>
<span class="name text-uppercase">Qingfan Wu</span>
</header>
<footer>
<div id="contact" class="horizontal-center">
<a href="https://github.com/wqfan">
<i class="fab fa-github fa-2x"></i>
</a>
<a href="https://www.linkedin.com/in/wqfan/">
<i class="fab fa-linkedin fa-2x"></i>
</a>
<a href="mailto:[email protected]">
<i class="fa fa-envelope fa-2x"></i>
</a>
<a href="https://twitter.com/wqfan5">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a href="https://www.instagram.com/qingfan.wu/">
<i class="fab fa-instagram fa-2x"></i>
</a>
</div>
<div id="copyright" class="horizontal-center">
</div>
</footer>
<script>
const e = document.getElementById('copyright')
e.textContent = `© Qingfan Wu ${(new Date()).getFullYear()}`
</script>
</body>
</html>