-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
46 lines (32 loc) · 1.04 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
<?php
header("HTTP/1.1 404 Not Found");
?>
<!DOCTYPE html>
<html class="has-navbar-fixed-top" lang="en">
<head>
<meta charset="UTF-8"/>
<title>TOIA - Makuda Consulting</title>
<?php require('./components/common_libraries.php') ?>
<link href="/css/bello.css" rel="stylesheet" type="text/css"/>
<link href="/css/menu.css" rel="stylesheet" type="text/css"/>
<link href="/css/404.css" rel="stylesheet" type="text/css"/>
</head>
<body style="background-color: #111;">
<?php require("./components/navbar.php"); ?>
<?php require("./components/menu.php"); ?>
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<i class="far fa-frown fa-10x"></i>
<p class="bigFont">
Hmmmmmmm,<br> non trovo la pagina.
</p>
</div>
</div>
</div>
</section>
<?php require "./components/footer.php" ?>
<script src="/js/menu.js" type="text/javascript"></script>
</body>
</html>