-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (64 loc) · 1.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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">
<link rel="stylesheet" href="style.css">
<title>Jokenpô</title>
</head>
<body>
<div id="mainGame">
<h1 id="title">Pedra, Papel e Tesoura</h1>
<div id="scoreBoard">
<div id="player">
<h2 id="player-name"></h2>
<span id="player-points">0</span>
<ul id="player-choose">
<li>
<a href="#" id="player-choose-1">
<img src="assets/img/pedra.png" alt="imagem mão simulando uma pedra">
</a>
</li>
<li>
<a href="#" id="player-choose-2">
<img src="assets/img/papel.png" alt="imagem mão simulando papel">
</a>
</li>
<li>
<a href="#" id="player-choose-3">
<img src="assets/img/tesoura.png" alt="imagem mão simulando uma tesoura">
</a>
</li>
</ul>
</div>
<div id="versus">
VS
</div>
<div id="computer">
<h2 id="computer-name">Computador</h2>
<span id="computer-points">0</span>
<ul id="computer-choose">
<li>
<a href="#" id="computer-choose-1">
<img src="assets/img/pedra.png" alt="imagem mão simulando uma pedra">
</a>
</li>
<li>
<a href="#" id="computer-choose-2">
<img src="assets/img/papel.png" alt="imagem mão simulando papel">
</a>
</li>
<li>
<a href="#" id="computer-choose-3">
<img src="assets/img/tesoura.png" alt="imagem mão simulando uma tesoura">
</a>
</li>
</ul>
</div>
</div>
<div id="message"></div>
</div>
<script src="script.js"></script>
</body>
</html>