-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (32 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<title>Камень Ножницы Бумага</title>
<link rel="stylesheet" href="styles/10-rock-paper-scissors.css">
</head>
<body>
<p class="title">Камень Ножницы Бумага</p>
<p>
<button onclick="
playGame('rock');
" class="move-button">
<img src="images/rock-emoji.png" class="move-icon"></button>
<button onclick="
playGame('paper');
" class="move-button">
<img src="images/paper-emoji.png" class="move-icon"></button>
<button onclick="
playGame('scissors');
" class="move-button">
<img src="images/scissors-emoji.png" class="move-icon"></button>
</p>
<p class="js-result result"><i>Начните игру!</i></p>
<p class="js-moves"></p>
<p class="js-score score"></p>
<button onclick="resetScore();" class="reset-score-button">Начать заново</button>
<script src="scripts/10-rock-paper-scissors_ru.js"></script>
</body>
</html>