-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>Hydna Pong</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" charset="utf-8"></script>
<script src="http://cdn.hydna.com/1/hydna.js"></script>
<script src="./script/excanvas.js"></script>
<script src="./script/app.js"></script>
<link rel="stylesheet" href="./style/master.css" type="text/css" media="screen"/>
</head>
<body>
<header>
<span class="score your-score">0</span>
<p class="status"></p>
<span class="score opponent-score">0</span>
</header>
<section id="game">
<canvas></canvas>
</section>
<section id="info-dialog">
<h1>Welcome to Hydna Pong</h1>
<p>Hydna Pong is a multiplayer, peer-to-peer, version of the
classic Pong Game. The game uses Hydna as network provider. Please
take a look a the <a href="http://www.github.com/hydna/hydna-pong">source
code</a>. The source code is well documented and will provide you with
some guidelines in how to write your own game with the help of Hydna.
<p>Click the button bellow to search for an opponent to play with.</p>
<p>Use arrow key up and down to move your paddle.</p>
<p>Happy gaming!</p>
<button>Find game</button>
</section>
</body>