-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
45 lines (39 loc) · 1.25 KB
/
404.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
<!DOCTYPE html>
<html>
<head>
<title>404</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0 maximum-scale=1.0 user-scalable=no">
<style>
@font-face {
font-family: 'Galdeano';
font-weight: 400;
font-style: normal;
src: url('/media/font/Galdeano.ttf') format('truetype');
}
</style>
<link rel="stylesheet" href="/media/css/main.min.css">
<script src="/media/js/jquery-1.11.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){ var location = $(this).parent().parent()
$('.headerLeft').click(function() { $('body,html').animate({scrollTop:0},800);});});
</script>
</head>
<body>
<header id="header">
<div class="wrap headwrap">
<div class="headerLeft">
<h5>Liang Chen</h5>
</div>
<nav role="navigation" class="headerRight">
<a href="/" class="headerButton">Home</a>
<a href="/cn/" class="headerButton">Chinese</a>
<a href="/eng/" class="headerButton">English</a>
</nav>
</div>
</header>
<hr />
<p>Nothing found :(</p>
<p><a href="/index.html">back to top</a></p>
</body>
</html>