-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththanks.html
36 lines (33 loc) · 1.77 KB
/
thanks.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
36
<!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" tabindex="0" id="current-article"><!-- Containter for the page preview -->
<div class="article-preview" id="read"><!-- div to hold this contents within the bounds of the article div but not distort -->
</div>
</div>
<div class="article" tabindex="1"><!-- Containter for the page preview -->
<div class="article-preview" id="interact"><!-- div to hold this contents within the bounds of the article div but not distort -->
</div>
</div>
</div>
</div>
<div data-role="footer" data-position="fixed" data-mini="false">
<a href="interactive.html" rel="external" data-role="button" data-icon="arrow-l" class="footer-btn">Interactive</a>
<a href="index.html#four" rel="external" data-role="button" data-icon="home" data-iconpos="notext" class="center-icon" id="home-btn">Home</a>
<a href="read.html" rel="external" data-role="button" data-icon="arrow-r" data-iconpos="right" class="footer-btn">Read More</a>
</div>
</div>
</body>
</html>