-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML_BATALHA_NAVAL.HTML
56 lines (45 loc) · 1.16 KB
/
HTML_BATALHA_NAVAL.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
<!doctype html>
<HTML lang="pt">
<style>
body {
background-image: url('fundo.jpg');
}
</style>
<head>
<title>Batalha Naval</title>
<meta charset="utf-8">
<script src="JAVASCRIPT_BATALHA.js" type="text/javascript" charset="utf-8"></script>
<link href="CSS_BATALHA.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Código autoexplicativo -->
<p>
<h1>
Batalha Naval
</h1>
</p>
<div>
<p style="color: aqua">
• ERRRRRROOOOU!
</p>
<p style="color: brown">
• ACERTOU!
</p>
</div>
<div id="tabuleiroJogador1"></div>
<div id="espaco1"></div>
<div id="informacoes">
<div id="informacoesJogadorDiv">
<textarea readonly="true" id="informacoesJogador1"></textarea>
</div>
<div id="informacoesJogador2Div">
<textarea readonly="true" id="informacoesJogador2"></textarea>
</div>
</div>
<div id="espaco2"></div>
<div id="tabuleiroJogador2"></div>
<script>
Init()
</script>
</body>
<HTML>