-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
45 lines (40 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>U.S. Treasury API: 404 Oh no!</title>
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="web/css/reset.css" rel='stylesheet' type='text/css'/>
<link rel="stylesheet" type="text/css" href="web/css/styles.css">
<style>
.error-page-container{
margin:0 auto;
overflow: auto;
text-align:center;
font-family:'Droid Sans', sans-serif;
font-size:35px;
line-height: 40px;
}
.error-page-img-container{
margin: 10px auto;
width:75%;
background-color: coral;
}
.error-page-img{
margin: 0 auto;
max-width: 410px;
}
</style>
</head>
<body class="bluedots">
<div class="error-page-container">
<div class="error-page-img-container">
<div class="error-page-img">
<img src="/web/images/404.png" width="100%">
</div>
</div>
<div class="error-page-msg">
<p><strong>4-Oh-4!</strong></br>Get out of jail and go back to <a href="http://www.treasury.io">Treasury.io</a>!</p>
</div>
</div>
</body>
</html>