-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
30 lines (25 loc) · 760 Bytes
/
404.html
File metadata and controls
30 lines (25 loc) · 760 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
27
28
29
30
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>404 | Hall Technologies</title>
<link rel="shortcut icon" href="Logo.png">
<link rel="stylesheet" href="main.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="row">
404
</div>
<p id="quote"></p>
<i id="author"></i>
<script type="text/javascript">
function parseQuote(response)
{
document.getElementById("quote").innerHTML = response.quoteText;
document.getElementById("author").innerHTML = response.quoteAuthor;
}
</script>
<script type="text/javascript" src="http://api.forismatic.com/api/1.0/?method=getQuote&format=jsonp&jsonp=parseQuote"></script>
</div>
</body>