-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 917 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Campo Minado</title>
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
</head>
<body>
<h1 id="titulo">Campo Minado</h1>
<h2 id="selecione-dificuldade">Selecione a dificuldade:<br></h2>
<div id="botoes">
<button id="botao-facil" onclick="set_campo(8, 10, 10);">
Fácil
</button>
<button id="botao-medio" onclick="set_campo(14, 18, 40);">
Médio
</button>
<button id="botao-dificil" onclick="set_campo(20, 24, 99);">
Difícil
</button>
</div>
<h3 id="quantidade_de_minas">Minas Restantes: 00</h3>
<div id="campo">
</div>
<br>
<button id="botao-bandeira"> Usar bandeira: 🚩</button>
</body>
</html>