-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
58 lines (55 loc) · 1.76 KB
/
Copy pathgame.html
File metadata and controls
58 lines (55 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Game of War</title>
<link rel="shortcut icon" href="./img/logo.png" type="image/png">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/game.css">
</head>
<body>
<div class="pause-overlay">
</div>
<div class="pause">
<h1>Пауза</h1>
<div class="play-again button">Возобновить игру</div>
<a href="./index.html" class="go-to-menu button">Закончить игру</a>
<ul class="changeskin player1">
<li><span class="type1"></span></li>
<li><span class="type2"></span></li>
<li class="selected"><span class="type3"></span></li>
</ul>
<ul class="changeskin player2">
<li><span class="type1"></span></li>
<li class="selected"><span class="type2"></span></li>
<li><span class="type3"></span></li>
</ul>
</div>
<div class="wrapper">
<div class="instructions">
<div>
Player 1 move with <span class="key">awd</span>
</div>
<div>
shoot with <span class="key">t</span>
</div>
</div>
<div class="instructions middle">
<div>
Pause <span class="key">Esc</span>
</div>
</div>
<div class="instructions right">
<div>
Player 2 move with <span class="key">arrows</span>
</div>
<div>
shoot with <span class="key">.</span>
</div>
</div>
</div>
<div class="sound"></div>
<div class="music"></div>
<script type="text/javascript" src="dist/bundle.js"></script>
</body>
</html>