-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
71 lines (71 loc) · 2.06 KB
/
main.html
File metadata and controls
71 lines (71 loc) · 2.06 KB
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
63
64
65
66
67
68
69
70
71
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>My Proxy Server</title>
<style>
body {
font: 14px Verdana, Arial, Helvetica, sans-serif;
}
.box {
width:500px;
margin: 10px auto;
text-align: center;
padding: 20px;
border-top: 1px solid #CCCCCC;
border-right: 2px solid #CCCCCC;
border-bottom: 2px solid #CCCCCC;
border-left: 1px solid #CCCCCC;
}
h1 {
font: bold normal 1.2em Verdana, Arial, Helvetica, sans-serif;
color: #000000;
margin: 5px 5px 20px;
padding: 10px;
border-top: 1px solid #eee;
border-right: 0px solid #ddd;
border-bottom: 1px solid #ddd;
border-left: 0px solid #ddd;
}
.footer {
font: .9em Verdana, Arial, sans-serif;
margin: 8px;
padding: 12px 8px 8px;
text-align: left;
}
.credit {
font: .8em Verdana, Arial, sans-serif;
margin: 8px;
padding: 8px;
text-align: left;
}
input.txt {
background:#F9f9f9 url(none) repeat scroll 0%;
border:1px solid #999999;
font-size:0.9em;
padding:5px;
width:250px;
}
input.btn {
font-size:0.9em;
font-family: Arial, sans-serif;
width: 100px;
margin: 2px 0;
padding: 4px;
}
</style>
</head>
<body>
<div class="box">
<h1>My Proxy Server</h1>
<center>
<form action="" method="get" accept-charset="utf-8">
<input name="url" type="text" class="txt" id = "input" value="type url here.." onfocus="this.value='';" />
<input type="submit" class="btn" value="Go" />
</form>
</center>
<p class="footer">Instructions: Just type the URL of any web page in the input box above (<em>e.g. labnol.org</em>) and hit Enter.</p>
<p class="footer">You too can <a href="http://www.labnol.org/?p=12890">setup a personal proxy server</a> using Google App Engine. This is a sample page from <a href="http://www.labnol.org/">Digital Inspiration</a> based on the <a href="http://mirrorrr.appspot.com/">Mirrorrr</a> project.</p>
</div>
</body>
</html>