-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (57 loc) · 1.94 KB
/
index.html
File metadata and controls
75 lines (57 loc) · 1.94 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
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Adventurer's Conquest</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="/CSS/index.css">
<link href="https://fonts.googleapis.com/css?family=Cinzel+Decorative" rel="stylesheet">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.4/socket.io.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/phaser/2.6.2/phaser.js"></script>
<script src="/Javascript/phaserCreate.js"></script>
<script src="/Javascript/phaserPreload.js"></script>
<script src="/Javascript/phaserRender.js"></script>
<script src="/Javascript/phaserUpdate.js"></script>
<script src="/Javascript/Player.js"></script>
<script src="/Javascript/index.js"></script>
</head>
<body>
<header>
<div class="heading">
<h1 id="title">Adventurer's Conquest</h1>
</div>
<nav>
<div class="navElement">
Visit the creators' Github profiles:
</div>
<a target="_blank" href="https://github.com/maxdevos49">
<div class="navElement">
Max DeVos
</div>
</a>
<div>|</div>
<a target="_blank" href="https://github.com/MasonLT199">
<div class="navElement">
Mason Timmerman
</div>
</a>
<div>|</div>
<a target="_blank" href="https://github.com/TomTheTornado">
<div class="navElement">
Thomas Powell
</div>
</a>
<div>|</div>
<a target="_blank" href="https://github.com/JosephNaberhaus">
<div class="navElement">
Joseph Naberhaus
</div>
</a>
</nav>
</header>
<p id="signInInfo">Enter a username and begin playing this multiplayer, top-down, fighter!</p>
<div id="signIn">
<input type="text" id="usernameInput" placeholder="Username" value="Steve"></input>
<button id="playButton" onclick="init(document.getElementById('usernameInput').value); document.getElementById('signIn').style.display = 'none'; document.getElementById('signInInfo').style.display = 'none';">Play!</button>
</div>
</body>
</html>