-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
61 lines (51 loc) · 2.47 KB
/
404.html
File metadata and controls
61 lines (51 loc) · 2.47 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
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Princeton ACM</title>
<link href="https://fonts.googleapis.com/css?family=Droid+Sans:400,700" rel="stylesheet" type="text/css">
<link type="text/css" rel="stylesheet" href="/assets/main.css">
<link rel="icon" type="image/x-icon" href="/myfavicon.ico"/>
<link rel="shortcut icon" type="image/x-icon" href="/myfavicon.ico"/>
<link rel="apple-touch-icon" href="/images/acm_with_chapter.png"/>
<link href="/feed.xml" rel="alternate" type="application/rss+xml" title="Princeton ACM" />
<meta name="title" content="Princeton ACM">
<link rel="canonical" href="http://princeton.acm.org/404.html">
<meta property="og:title" content="Princeton ACM"/>
<meta property="og:url" content="http://princeton.acm.org/404.html"/>
<meta property="og:site_name" content="Princeton ACM">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/84d2c1acac.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="navbar"></div>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch("/components/navbar.html")
.then(response => response.text())
.then(data => {
document.getElementById("navbar").innerHTML = data;
})
.catch(error => console.error("Error loading navbar:", error));
});
</script>
<center>404 Error</center>
<center>Sorry, this page does not exist!</center>
<!-- Source: http://www.haydiroket.com/post/1013126770 -->
<center><img src="/assets/dealwithit.gif" width="400" height="437" alt="dealwithit.gif" /></center>
<div id="footer"></div>
<script>
document.addEventListener("DOMContentLoaded", function() {
fetch("/components/footer.html")
.then(response => response.text())
.then(data => {
document.getElementById("footer").innerHTML = data;
})
.catch(error => console.error("Error loading footer:", error));
});
</script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="/assets/main.js"></script>
</body>
</html>