-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmaintenance.php
41 lines (41 loc) · 1.41 KB
/
maintenance.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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="icon" href="favicon.ico" />
<meta name="theme-color" content="#424242">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<title>Sito in Manutenzione</title>
<style>
div{
margin: 0 auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
p, h1 {
font-family: 'Roboto', sans-serif;
}
img {
width: 100%;
max-width: 500px;
}
</style>
</head>
<body>
<div>
<h1>Sito in Manutenzione</h1>
<p>
La pagina che stai cercando di visitare è <i>(ovviamente)</i> offline poiché in manutenzione.<br>
Intanto tieniti occupato leggendo <a href="http://nonciclopedia.wikia.com/wiki/Speciale:Random" target="_blank">una pagina a caso su nonciclopedia</a>.
</p>
<img src="https://media.giphy.com/media/5WYH3MDdBMyv6/giphy.gif" />
</div>
</body>
</html>