-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpkmonrun.php
More file actions
29 lines (27 loc) · 945 Bytes
/
Copy pathpkmonrun.php
File metadata and controls
29 lines (27 loc) · 945 Bytes
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
<?php include("includes/a_config.php");?>
<!DOCTYPE html>
<html>
<head>
<?php include("includes/head-tag-contents.php");?>
</head>
<body>
<?php include("includes/navbar.php");?>
<main class="">
<section class="section-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Pokemon Run</h2>
</div>
<div class="row justify-content-center pb-5">
<div class="col text-center">
<canvas class="border" id="canvas" width="480" height="270" opacity=0></canvas><br>
<button class="btn button-primary" type="button" id="boton">Iniciar Juego</button>
</div>
</div>
</div>
</section>
</main>
<?php include("includes/footer.php"); ?>
<script src="assets/js/pkmonrun/game.js"></script>
</body>
</html>