forked from Rockncoder/JQMGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjqm.html
34 lines (33 loc) · 1.04 KB
/
jqm.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
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>TFI</title>
<link href="content/jquery.mobile-1.3.2.min.css" rel="stylesheet" type="text/css" />
<link href="content/style.css" rel="stylesheet" type="text/css" />
<script src="libs/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="libs/jquery.mobile-1.3.2.min.js" type="text/javascript"></script></head>
</head>
<body>
<div id="page1" data-role="page" data-theme="e">
<p>Page 1</p>
<ul>
<li><a href="#page2" data-role="button">Go to page 2</a></li>
<li><a href="#credits" data-role="button">Credits</a></li>
</ul>
</div>
<div id="page2" data-role="page" data-theme="e">
<p>Page 2</p>
<ul>
<li><a href="#page1" data-role="button">Go to page 1</a></li>
<li><a href="#credits" data-role="button">Credits</a></li>
</ul>
</div>
<div id="credits" data-role="page" data-theme="e">
<p>The Credits Page</p>
<ul>
<li><a href="#page1" data-role="button">Go to page 1</a></li>
<li><a href="#page2" data-role="button">Go to page 2</a></li>
</ul>
</div>
</body>
</html>