-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforbidden.html
45 lines (45 loc) · 2.36 KB
/
forbidden.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
<!Doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1">
<title>Access Forbidden</title>
<!-- Bootstrap CSS THEME-->
<link rel="stylesheet" href="/css/bootstrap.css">
<!--Font-awesome theme file-->
<link rel="stylesheet" href="/css/font-awesome.css">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<!--Body-->
<body style="background-color: #EEEEEE;color:#FF0000;">
<!--Container-->
<div class="container" style="height:100%; width:100%;">
<!-- Relative Position Parent -->
<div style="position:relative;height:100%;width:100%;">
<!-- Absolute Position Child -->
<div style="position:absolute;width:100%;text-align:center;">
<div style="font-size:130px;color:#0066cc;"><i class="fa fa-frown-o" aria-hidden="true"></i></div>
<div style="font-size:100px;color:#000000;"><i class="fa fa-lock" aria-hidden="true"></i></div>
<div style="font-size:50px;letter-spacing:15px;text-transform:uppercase;font-family:arial,serif;"><i class="fa fa-ban" aria-hidden="true"></i> OOPS!</div>
<div style="font-size:25px;letter-spacing:8px;text-transform:uppercase;font-family:arial,serif;">WHATEVER YOU'RE TRYING TO ACCESS IS FORBIDDEN</div>
<br>
<div style="font-size:30px;letter-spacing:4px;font-weight:bold;text-transform:uppercase;font-family:arial,serif;"><a style="text-decoration:none;" href="/index.php">GO HOME</a></div>
</div>
<!-- End Absolute Position Child -->
</div>
<!-- End Relative Position Parent -->
</div>
<!--End Container -->
</body>
<!--End Body-->
</html>