-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfindTreasure.php
More file actions
35 lines (35 loc) · 1.3 KB
/
Copy pathfindTreasure.php
File metadata and controls
35 lines (35 loc) · 1.3 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
<?php include("includes/a_config.php");?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<?php include("includes/head-tag-contents.php");?>
<title>Busca el tesoro</title>
</head>
<body>
<?php //include("includes/design-top.php");?>
<?php include("includes/navbar.php");?>
<main class="container mt-5 pt-5">
<section class="section-bg wow fadeInUp pb-5">
<div class="row justify-content-center">
<div class="col-4">
<h1 class="text-center">Busca el tesoro</h1>
<p id="intentos">Intentos: 1</p>
<p id="info"></p>
<div id="icon"></div>
</div>
<div class="col-5">
<p id="coordenadas"></p>
<canvas id="map" width="400px" height="400px"></canvas>
</div>
</div>
</section>
</main>
<?php include("includes/footer.php"); ?>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<script src="assets/js/findTreasure/helpers.js"></script>
<script src="assets/js/findTreasure/game.js"></script>
</body>
</html>