-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrunfo.html
More file actions
37 lines (31 loc) · 1.18 KB
/
trunfo.html
File metadata and controls
37 lines (31 loc) · 1.18 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="pt-BR">
<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="trunfo.css">
<title>Super Trunfo Pokemon</title>
</head>
<body>
<div class="container">
<h1 class="page-title">Super Trunfo</h1>
<button onclick="sortearCard()" id="btnSortear">Sortear carta</button>
<form id="form">
<h2>Escolha o seu atributo</h2>
<div class="wrapper">
<div id="placar"></div>
<div id="quantidade-cartas"></div>
<div id="cartas">
<div id="card-P1" class="carta"></div>
<div id="card-P2" class="carta"> </div>
</div>
<button type="button" id="btnJogar" onclick="jogar()" disabled="false">Jogar</button>
</div>
<div id="resultado"></div>
<button type="button" id="btnProximaRodada" onclick="proximaRodada()" disabled="true">Proxima rodada</button>
</form>
</div>
<script src="supertrunfo.js"></script>
</body>
</html>