-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
70 lines (64 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<title>404: not found</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="icon" href="fig/favicon.png" />
<style>
body {
font: 20px Montserrat, sans-serif;
line-height: 1.8;
color: #f5f6f7;
background-color: #2f2f2f;
vertical-align: middle;
}
a:hover {
color: #00aaff;
font-size: 100%;
}
h1 {
color: yellow;
}
p {
font-size: 20px;
}
.margin {margin-bottom: 45px;}
.bg-1 {
background-color: #1abc9c; /* Green */
color: #ffffff;
}
.bg-4 {
background-color: #2f2f2f; /* Black Gray */
color: #fff;
}
.blue {
color: #00aaff;
font-weight: bold;
text-decoration: none;
}
.container-fluid {
padding-top: 50px;
padding-bottom: 50px;
margin: auto;
vertical-align: middle;
}
</style>
</head>
<body>
<!-- <header class="container-fluid bg-1 text-center"></header> -->
<!-- First Container -->
<div class="container-fluid bg-4 text-center">
<h1 class="margin"><b>404</b>: page not found</h1>
<p>Try going here:
<a class="blue" href="https://r-hyperspec.github.io/index.html">https://r-hyperspec.github.io</a>
</p>
</div>
<!-- Footer -->
<!-- <footer class="container-fluid bg-1 text-center"> </footer> -->
</body>
</html>