-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·49 lines (41 loc) · 2.11 KB
/
index.html
File metadata and controls
executable file
·49 lines (41 loc) · 2.11 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>STARMAN</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Matheus Costa" />
<meta name="keywords" content="starman, jogo, baseado, defender, html, javascript, html5" />
<meta name="description" content="jogo 2d, originalmente feito em C para o trabalho final da cadeira na faculdade, baseado no defender do atari. refeito com javascript, feito para ser jogado no computador ou smartphone." />
<meta property="og:title" content="STARMAN" />
<meta property="og:type" content="article" />
<meta property="og:description" content="jogo 2d, originalmente feito em C para o trabalho final da cadeira na faculdade, baseado no defender do atari. refeito com javascript, feito para ser jogado no computador ou smartphone." />
<meta property="og:url" content="https://mthcsta.github.io/starman-in-javascript" />
<meta property="og:site_name" content="Site Pessoal de Matheus Costa" />
<meta property="og:image" content="https://mthcsta.github.io/starman-in-javascript/assets/starman.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="160">
<meta property="og:image:height" content="160">
<link rel="manifest" href="manifest.json">
</head>
<body>
<script src="https://www.gstatic.com/firebasejs/7.2.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.3/firebase-firestore.js"></script>
<script>
firebase.initializeApp({
apiKey: 'AIzaSyBevWRsZq9P56QFV3EcEXnkWAymh1k7fGw',
authDomain: 'starman-c5a03.firebaseapp.com',
projectId: 'starman-c5a03'
});
var db = firebase.firestore();
</script>
<!-- GamePad -->
<link rel="stylesheet" href="gamepad/virtualjoystick.css" />
<script src="gamepad/Collection.js"></script>
<script src="gamepad/hand.minified.js"></script>
<script src="gamepad/Touches.js"></script>
<script src="main.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</body>
</html>