-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (38 loc) · 1.4 KB
/
index.html
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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="content-type" content="text/html,charset=utf-8" />
<title>:: PeerGaming - Examples ::</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container" id="layout">
<div class="wrap center main" id="main">
<div class="center">
<div class="box" id="box"></div>
<ul class="modes" id="modes">
<li>
<!-- // -->
<form id="form-local">
<input class="button local" type="submit" value="Local Multiplayer" id="local" />
</form>
<div class="description">split screen in one browser</div>
</li>
<li>
<form id="form-remote">
<button class="button remote" id="pre-remote">Remote Multiplayer</button>
</form>
<div class="description">different browsers on multiple systems</div>
</li>
</ul>
</div>
</div>
</div>
<script src="ui.js"></script>
</body>
</html>