forked from niyeradori/QuickSmith-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
40 lines (36 loc) · 1.24 KB
/
error.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="" />
<meta name="author" content="" />
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<link rel="icon" href="img/qsmith.bmp">
<title>Free Bootstrap Error Page Template</title>
<!-- BOOTSTRAP CORE STYLE -->
<link href="css/bootstrap.css" rel="stylesheet" />
<!-- CUSTOM STYLE -->
<!--<link href="css/custom-style.css" rel="stylesheet" />-->
</head>
<body>
<div class="container">
<div class="row pad-top text-center">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<h1><strong> 404 ! </strong> ERROR </h1>
<h3>Resource Not Found</h3>
<a href="#" class="btn btn-default btn-lg" onclick="myFunction()" > <strong> BACK TO HOME </strong></a>
</div>
</div>
</div>
<script type="text/javascript">
function myFunction() {
// document.getElementById("demo").innerHTML = "Hello World";
// window.location(url);
location.href = "index.html";
}
</script>
</body>
</html>