-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (33 loc) · 1006 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Jogo - Sprint 4</title>
<style>
#canvas {
border: 3px solid #000;
background-color: #65666A ;
}
#robo1, #robo2 {
position: absolute;
width: 50px;
height: 50px;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #000;
}
</style>
</head>
<body>
<img id="robo1Image" src="./Images/robo3.png" style="display: none;">
<img id="robo2Image" src="./Images/robo2.png" style="display: none;">
<canvas id="canvas" width="1000" height="500"></canvas>
<script type="text/javascript" src="./js/quadrado.js"></script>
<script type="text/javascript" src="./js/funcoes.js"></script>
</body>
</html>