-
Notifications
You must be signed in to change notification settings - Fork 3
/
Ping Pong Game.html
34 lines (34 loc) · 1.4 KB
/
Ping Pong Game.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="keywords" content="Document" />
<meta name="description" content="Your Description..." />
<title>Ping Pong Game</title>
<link rel="stylesheet" href="resources/css/style.css" />
<link
rel="shortcut icon"
href="resources/img/favicon.ico"
type="image/x-icon"
/>
</head>
<body>
<canvas></canvas>
<div class="panel reveal">
<div class="stat"></div>
<h1>Ping Pong Game</h1>
<span>Modes: <div class="tooltip">a mode sharpens the head of computer. not fastens the game!</div></span>
<input type="text" hidden>
<ul class="gameMode">
<li class="mode baby" data-number=".05">Baby</li>
<li class="mode easy" data-number=".08">Easy</li>
<li class="mode normal" data-number=".1">Normal</li>
<li class="mode hard" data-number=".2">Hard</li>
<li class="mode insane" data-number=".3">Insane</li>
</ul>
<button class="play">Play</button>
</div>
<script src="resources/js/main.js"></script>
</body>
</html>