-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
44 lines (35 loc) · 1.01 KB
/
index.php
File metadata and controls
44 lines (35 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>WebRig</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!--meta name="viewport" content="width=500px"-->
<!--meta name="viewport" content="width=device-width, initial-scale=1"-->
<link rel="stylesheet" type="text/css" href="style.css">
<script src="zjslib.js" type="text/javascript"></script>
<style>
</style>
<script>
function start(){
rigstart();
}
window.onload = start;
</script>
</head>
<body oncontextmenu="return false;">
<?php
require_once("rig.php");
rig();
?>
<div id="validators">
<a href="http://validator.w3.org/check/referer">
<img src="http://www.w3.org/html/logo/badge/html5-badge-h-css3-semantics.png"
alt="Valid HTML 5!" height="31" width="88"></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!"></a>
</div>
</body>
</html>