-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (47 loc) · 1.62 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dama Multipla - Damei</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header id="header" class="headerPre" onclick="homePage()" style="cursor: pointer;">
<img src="/source/image/header.png">
</header>
<div class="doc">
<div class="init">
<button class="button-6" id="initGame">Iniciar jogo</button>
</div>
<div id="mainPage" class="hidden">
<div class="container">
<h2 id="game1Title">Jogo 1</h2>
<div id="game1" class="game1"></div>
</div>
<div class="container">
<h2 id="game2Title">Jogo 2</h2>
<div id="game2" class="game2"></div>
</div>
</div>
<button style="opacity: 0;" class="hidden" id="resetButton">Resetar Jogo</button>
</div>
<footer>
<ul>
<li>
<a style="cursor: pointer;" onclick="aboutUs()">Sobre nós</a>
</li>
</ul>
</footer>
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<p id="modal-text"></p>
<button id="resetButton0" class="restart-button" onclick="closeModal()">Reiniciar Jogos!</button>
</div>
</div>
<script src="/source/functions/script.js"></script>
<script src="/source/functions/main.js"></script>
</body>
</html>