blob: a076a9a8daa6b2d3556238f6d2c8d4042f011525 (
plain)
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
|
<?php
include("include.php");
?>
<!Doctype html>
<head>
<title>Welcome</title>
<meta http-equiv='Content-type' content='text/html; charset=utf-8' />
<link rel='shortcut icon' href='/favicon.ico' type='image/x-icon' />
<link rel='stylesheet' type='text/css' href='style.css'/>
<style type='text/css'>
a2 {
color: blue;
}
tt {
text-align: center;
}
</style>
</head>
<body vlink='#000000' link='#000000' alink='#9a9696'>
<center>
<?php include("header.php"); ?>
<table align="center"><tr><td>
<h1> Welcome! </h1>
<?php //<img src="404.jpg" alt="404 - not found"> ?>
</td></tr><tr><td>
On this website, you can get a random
</td></tr><tr><td>
</td></tr><tr><td>
</td></tr><tr><td>
<ul>
<li>
<table><tr><td>
<a href="/youtube?id=<?php echo $videoID; ?>">YouTube video</a>
</td></tr></table>
</li>
<li>
<table><tr><td>
<a href="/puush">puush file</a>
</td></tr></table>
</li>
<li>
<table><tr><td>
<a href="/random">random subsite</a>
</td></tr></table>
</li>
</ul>
</td></tr>
<tr><td>
</td></tr><tr><td>
completely free and as often as you like.
</td></tr>
</table>
<br><br>
For comments, questions or suggestions drop a <br> <a href="/about"><font color='blue'>mail</font></a>.
<?php include("piwik.php");?>
</body>
</html>
|