-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay.html
31 lines (24 loc) · 901 Bytes
/
play.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
<!DOCTYPE html>
<html lang="it">
<head>
<script src='phaser.min.js'></script>
<script src="game.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pinocchio - Gioco</title>
<link rel="stylesheet" href="main-style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Peralta">
<link rel="icon" href="assets/favicon.png" type="image/png" />
</head>
<body background="./assets/global/background.png">
<div class="main-frame game-frame" id="main-frame">
<div class="navigation">
<a href="landing-page.html"><span class="icon"></span></a>
</div>
<a href="./index.html">
<img src="./assets/global/back_button.png" id="back_button"></img>
</a>
</div>
</body>
</html>