2017-06-09 06:25:25 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Javascript game</title>
|
2017-06-10 16:13:19 +00:00
|
|
|
<script src="./resources/frameworks/jquery-3.2.1.min.js" type="text/javascript"></script>
|
|
|
|
<script src="./resources/game/tutorial.js" type="text/javascript"></script>
|
2017-06-15 16:34:32 +00:00
|
|
|
<link rel="stylesheet" href="resources/global/style.css">
|
2017-06-20 16:57:21 +00:00
|
|
|
|
|
|
|
<!-- Leaflet Interactive Map -->
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css"
|
|
|
|
integrity="sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ=="
|
|
|
|
crossorigin=""/>
|
|
|
|
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"
|
|
|
|
integrity="sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg=="
|
|
|
|
crossorigin=""></script>
|
2017-06-09 06:25:25 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-06-10 16:06:11 +00:00
|
|
|
<nav>
|
|
|
|
<a href="./index.html">Main</a>
|
|
|
|
<a href="./sandbox.html">Sandbox</a>
|
2017-06-20 16:57:21 +00:00
|
|
|
<a href="./map.html">Game</a>
|
2017-06-15 16:10:05 +00:00
|
|
|
<a href="./rules.html">Rules</a>
|
|
|
|
<a href="./questions.html">Questions</a>
|
2017-06-18 20:54:36 +00:00
|
|
|
<a href="./spawn.html">Spawn</a>
|
2017-06-10 16:06:11 +00:00
|
|
|
</nav>
|
2017-06-09 06:25:25 +00:00
|
|
|
<canvas id="myCanvas" width="640" height="480"
|
|
|
|
style="border: 1px solid gray; width: 640px; height: 480px"></canvas>
|
|
|
|
</body>
|
|
|
|
</html>
|