-
Notifications
You must be signed in to change notification settings - Fork 0
/
game-mode-recycling.php
32 lines (31 loc) · 1.16 KB
/
game-mode-recycling.php
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
<!DOCTYPE html>
<html>
<head>
<title>TrashMap - Game Mode</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="layout.css">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="game-mode">
<div data-role="header">
<h1>Game Mode</h1>
<a data-role="button" data-icon="home" onclick="$.mobile.changePage( 'menu.php', { transition: 'pop' } );">Menu</a>
</div>
<div data-role="content">
<a href="scavenger-hunt-recycling.php" data-role="button">Scavenger Hunt</a>
<a href="hot-or-cold-recycling.php" data-role="button" rel="external">Hot or Cold</a>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="game-mode-trash.php">Trash</a></li>
<li><a href="#" class="ui-btn-active ui-state-persist">Recycling</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>