-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAtividade_8.html
More file actions
37 lines (36 loc) · 1.44 KB
/
Atividade_8.html
File metadata and controls
37 lines (36 loc) · 1.44 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
<!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>Jokenpo</title>
<link rel="stylesheet" type="text/css" href="css/styles2.css">
</head>
<body>
<h1>Jokenpo</h1>
<div class="game">
<div class="player">
<h2>Você</h2>
<div class="choices">
<img class="choice" id="pedra" src="img/pedra-papel-tesoura (2).png" onclick="chose1()" alt="Pedra">
<img class="choice" id="papel" src="img/pedra-papel-tesoura (3).png" onclick="chose2()"alt="Papel">
<img class="choice" id="tesoura" src="img/pedra-papel-tesoura (4).png" onclick="chose3()"alt="Tesoura">
</div>
</div>
<div class="vs">VS</div>
<div class="computer">
<h2>Computador</h2>
<div class="choices">
<img class="choice" id="computer-choice1" src="img/pedra-papel-tesoura (2).png" alt="Escolha do computador">
<img class="choice" id="computer-choice2" src="img/pedra-papel-tesoura (3).png" alt="Escolha do computador">
<img class="choice" id="computer-choice3" src="img/pedra-papel-tesoura (4).png" alt="Escolha do computador">
</div>
</div>
</div>
<div class="result">
<h2 id="result-text"></h2>
</div>
<script src="js/jokenpo.js"></script>
</body>
</html>