forked from mikobautista/JQM-Assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jqm-1.html
30 lines (24 loc) · 837 Bytes
/
jqm-1.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
<!DOCTYPE html>
<html>
<!-- This is adapted from jquerymobile.com tutorials -->
<head>
<title>Trees</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Trees</h1>
</div><!-- /header -->
<div data-role="content">
<p>Trees are nice to sit under. They are cool in the summer and have beautiful color in the fall.</p>
</div><!-- /content -->
<div data-role="footer">
<h4>Friends of Trees Foundation</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>