-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<title>Batalha Naval</title>
<link rel="icon" type="image/png" href="img/fleetBattle.png" />
<link rel="stylesheet" type="text/css" href="css/estiloBatalhaNaval.css">
</head>
<body onload="iniciarBatalhaNaval()">
<main>
<nav id="menu"></nav>
<section id="campo"></section>
<footer id="rodape">
<p>
Copyright © 2019 - by Matheus Ferreira <br>
<a href="https://www.linkedin.com/in/matheus-ferreira-ab9574155" target="_blank">LinkedIn</a> |
<a href="mailto:matheusfdantas03@gmail.com" target="_blank">Gmail</a> |
<a href="https://github.com/matheusfd3" target="_blank">GitHub</a>
</p>
</footer>
</main>
<script type="text/javascript" src="js/iniciarBatalhaNaval.js"></script>
<script type="text/javascript" src="js/funcoesHtml.js"></script>
<script type="text/javascript" src="js/criarMenu.js"></script>
<script type="text/javascript" src="js/calcularPossibilidades.js"></script>
<script type="text/javascript" src="js/criarCampo.js"></script>
<script type="text/javascript" src="js/atirar.js"></script>
<script type="text/javascript" src="js/afundarBarco.js"></script>
<script type="text/javascript" src="js/adicionarTabuleiro.js"></script>
<script type="text/javascript" src="js/instrucoesBarcos.js"></script>
<script type="text/javascript" src="js/movimentacao.js"></script>
<script type="text/javascript" src="js/adicionarListaDeBarcos.js"></script>
</body>
</html>