-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.html
40 lines (36 loc) · 1.4 KB
/
site.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
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RPS GAME</title>
<link rel="stylesheet" href="style.css">
<script src="game.js" defer></script>
</head>
<body>
<header id="page-title">ROCK PAPER SCISSORS</header>
<div id="game-board">
<div id="player-side" class="panel">
<div id="player-name">player name</div>
<div id="player-options" class="options">
<img src="svg/hand-rock-regular.svg" id="rock" class="rps" ></img>
<img src="svg/hand-paper-regular.svg" id="paper" class="rps"></img>
<img src="svg/hand-scissors-regular.svg" id="scissors" class="rps"></img>
</div>
</div>
<div id="board-center">
<div id="score">GAME SCORE</div>
<div id="round-event">round event</div>
</div>
<div id="pc-side" class="panel">
<div id="pc-name">Computer</div>
<div id="pc-options" class="options">
<img src="svg/hand-rock-regular.svg" class="rps-pc" ></img>
<img src="svg/hand-paper-regular.svg" class="rps-pc"></img>
<img src="svg/hand-scissors-regular.svg" class="rps-pc"></img>
</div>
</div>
</div>
</body>
</html>