-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (23 loc) · 846 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ábaco Simulador </title>
<meta name="description" content="Um simulador de Ábaco simples">
<meta name="author" content="Luis Araujo">
<link rel="icon" type="image/png" href="resource/favicon.png"/>
<!-- lib externa -->
<script src="external_apis/howler.min.js"></script>
<!-- starter.js -->
<script src="scripts/starterJS-0.1.2.js"></script>
<!-- css do starterjs -->
<link href="resource/style.css" type="text/css" rel="stylesheet">
<!-- scripts especificos o exemplo -->
<script src="bolinha.js"></script>
<script src="mygame.js"></script>
</head>
<body>
<img src="resource/starterlogo.png" style="display:none" id="logohtml">
<canvas id="gamecanvas" width="700" height="600" style="background:none"></canvas>
</body>
</html>