-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfileNotFound.php
60 lines (54 loc) · 1.56 KB
/
fileNotFound.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
<?php
/*
Author name: <Your name>;
E-mail ID: <Your E-mail ID>
Date: <dd-mm-yyyy>
*/
/////////////////////////////////////////////////////////
//include_once("variables.php");
//include_once("checkLoginStatus.php");
?>
<!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>Title</title>
<?php include_once("stylesAndFont.php"); ?>
<link href="https://fonts.googleapis.com/css?family=Gochi+Hand" rel="stylesheet">
<style>
body {
background: #ccc;
font-size:30px;
}
.textFam {
font-family: Gochi Hand;
}
button {
font-family: Arial;
font-weight: bold;
}
input {
font-family: Roboto;
}
</style>
</head>
<body>
<div class="container textFam">
<div class="row">
<div class="col-md-6" style="text-align:center; padding-top: 10%;">
<h1>Uhhmm.. 404.</h1>
<img style="height:300px; display:inline-block" src="images/shrug.png" alt="Shrug" class="img-fluid">
<h1>SORRY.</h1>
</div>
<div class="col-md-6" style="text-align:center; padding-top: 20%;">
<h2>What you were looking for, though?</h2>
<input type="text" class="form-control">
<button class="btn btn-primary btn-lg">Search</button>
</div>
</div>
</div>
<?php include_once("script.php"); ?>
</body>
</html>