-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (73 loc) · 2.7 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
<!DOCTYPE html>
<html lang="pt">
<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="./assets/styles/index.css" />
<link rel="stylesheet" href="./assets/styles/index.min.css" />
<title>Jogo da Velha by mariovarela99</title>
</head>
<body>
<audio id="beep" src="./assets/audio/beep.mp3"></audio>
<div id="root">
<header class="main-header">
<h2># Jogo-da-Velha #</h2>
<h3>#</h3>
<nav>
<button type="button" id="NewGameButton">Novo Jogo</button>
<button type="button" id="LeaveGameButton">Sair</button>
</nav>
</header>
<main class="main-main">
<section class="main-section">
<h3 id="Who">É a vez do Jogador X</h3>
<table id="arena">
<tr>
<td><button type="button" class="arena-button">?</button></td>
<td><button type="button" class="arena-button">?</button></td>
<td><button type="button" class="arena-button">?</button></td>
</tr>
<tr>
<td><button type="button" class="arena-button">?</button></td>
<td><button type="button" class="arena-button">?</button></td>
<td><button type="button" class="arena-button">?</button></td>
</tr>
<tr>
<td><button type="button" class="arena-button">?</button></td>
<td><button type="button" class="arena-button">?</button></td>
<td><button type="button" class="arena-button">?</button></td>
</tr>
</table>
</section>
</main>
<footer class="main-footer">
<p>© by mariovarela99 ℗ 2021</p>
</footer>
</div>
<section id="NewGame">
<div id="New">
<h3>Iniciar Novo Jogo ?</h3>
<div class="buttonsNew">
<button type="button" id="yesNew">Sim</button>
<button type="button" id="notNew">Não</button>
</div>
</div>
<button type="button" id="Close">+</button>
</section>
<section id="GameOver">
<div id="Over">
<h3>Game Over.!</h3>
<p id="vencedor">O Jogador O Venceu.!</p>
<div class="options">
<button type="button" id="newgame">Novo Jogo</button>
<button type="button" id="GoOut">Sair</button>
</div>
</div>
</section>
<script src="./assets/scripts/index.js"></script>
<script src="./assets/scripts/WhoWin.js"></script>
<script src="./assets/scripts/NewGame.js"></script>
<script src="./assets/scripts/GameOver.js"></script>
</body>
</html>