-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsplash.php
More file actions
45 lines (45 loc) · 818 Bytes
/
splash.php
File metadata and controls
45 lines (45 loc) · 818 Bytes
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">
<title>Dereferrer Service</title>
<style>
body {
background-color: #fff;
padding: 0;
margin: 0 auto;
width: 900px;
text-align: center;
}
h1, p {
text-transform: uppercase;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #262B2E;
padding: 0;
margin: 0;
}
h1 {
font-size: 120px;
}
p {
margin: 100px 0 100px 0;
}
div.about {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #ccc;
padding: 0;
margin: 0;
}
div.about a {
color: #ccc;
text-decoration: none;
}
</style>
</head>
<body>
<h1>Dereferrer Service</h1>
<p>This is a private dereferrer Service. Go run your own!</p>
<div class="about">Get the <a href="http://www.naden.de/blog/derefer-script">Derefer Script</a></div>
</body>
</html>