-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinteractive.html
35 lines (34 loc) · 1.56 KB
/
interactive.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
35
<!DOCTYPE html>
<html>
<head>
<title>ideaLab Worcester Art Museum</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/theme.css" /> <!-- jQuery Mobile theme -->
<link rel="stylesheet" href="css/pageViewer.css" /> <!-- page specific css -->
<script src="js/jquery-1.7.2.js"></script><!-- most compatable version of jquery with jquery Mobile and ipad -->
<script src="js/pageViewer.js"></script> <!-- page specific javascript is loaded prior to mobile-->
<script src="js/jquery.mobile-1.2.0.js"></script> <!-- jQuery Mobile library -->
</head>
<body>
<div data-role="page"data-theme="a">
<div data-role="content" id="sub-page"> <!-- basic content setup -->
<div id="article-wrapper"><!-- wrapper for all previews -->
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="color"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="puzzle" rel="external"></a>
</div>
</div>
<div class="article"><!-- Containter for the page preview -->
<div class="article-preview" id="puzzle"><!-- div to hold this contents within the bounds of the article div but not distort -->
<a href="coloring" rel="external"></a>
</div>
</div>
</div>
</div>
<div data-role="footer" data-position="fixed" data-mini="false">
<a href="index.html#four" rel="external" data-role="button" data-icon="home" data-iconpos="notext" class="center-icon" id="home-btn">Home</a>
</div>
</div>
</div>
</body>
</html>