-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
79 lines (46 loc) · 1.66 KB
/
404.php
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Kwiki Sweepstakes Website | Design By Developer Bazaar Technology</title>
<!-- site favicon -->
<link rel="shortcut icon" type="image/png" href="assets/images/favicon.png">
<!-- main style css link -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- responsive css link -->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- Twitter Meta Property Started -->
<meta property="twitter:image" content="assets/images/favicon.png" />
<meta property="twitter:image:width" content="350" />
<meta property="twitter:image:height" content="597" />
<meta name="twitter:domain" content="Kwiki Sweepstakes" />
<style>
.error-page img {
width: 40%;
}
.bg-black {
background: #0c0c0c;
}
</style>
</head>
<body class="bg-black">
<!-- disclaimer-page- start -->
<section class="error-page">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<img src="assets/images/404_error.png" class="img-fluid">
</div>
<div class="col-md-12 text-center">
<a href="index.php" class="btn-grad">Back to homepage</a>
</div>
</div>
</div>
</section>
<!-- disclaimer-page- end -->
<!-- Js start -->
<?php include('assets/include/js.php'); ?>
</body>
</html>