-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
26 lines (21 loc) · 938 Bytes
/
404.html
File metadata and controls
26 lines (21 loc) · 938 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>404</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/meta/gem.css">
<style>
*{text-align: center;color:white}
button {font-family:'Roboto',sans-serif;font-weight:bold;padding:5px;border-width:0;border-radius:15px;text-decoration:none;background:linear-gradient(#ffffff80, #b8b8b880);color:white}
button:hover {cursor:pointer}
button:active {background:linear-gradient(#b8b8b880, #ffffff80);}
button:disabled {background:linear-gradient(to bottom, silver, dimgray, dimgray, silver);box-shadow:none;color:white;cursor:default;}
</style>
</head>
<body>
<h1 style="font-size: 100px; margin-bottom: 0;">404</h1>
<h4 style="margin-top: 0;">Not Found</h4>
<p>Here is your page! Oh wait, nothing is here?</p>
<p>Oh well...you can go <a href="/"><button>Back</button></a> to the home page.</p>
</body>
</html>