-
Notifications
You must be signed in to change notification settings - Fork 0
/
selecaoTabuleiro.html
33 lines (31 loc) · 1.07 KB
/
selecaoTabuleiro.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
<!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="css/padrao.css">
<link rel="stylesheet" href="css/selecaoTabuleiro.css">
<title>Escolha seu tabuleiro</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
<script src="js/selecaoTabuleiro.js"></script>
</head>
<body>
<div class="darkScreen">
<header class="header">
<a href="index.php" class="goBackButton"><img src="img/back.png" alt="incone para voltar à tela inicial"></a>
</header>
<main>
<p>Escolha o tamanho de tabuleiro:</p>
<div id="localButton">
<form onsubmit="selectGame();return false">
<button>2x2</button>
<button>4x4</button>
<button>6x6</button>
<button>8x8</button>
</form>
</div>
</main>
</div>
</body>
</html>