mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-20 16:00:31 +00:00
27 lines
No EOL
631 B
HTML
Executable file
27 lines
No EOL
631 B
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page Title</title>
|
|
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
|
|
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
|
|
<script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page">
|
|
|
|
<div data-role="header">
|
|
<h1>Page Title</h1>
|
|
</div><!-- /header -->
|
|
|
|
<div data-role="content">
|
|
<p>Page content goes here.</p>
|
|
</div><!-- /content -->
|
|
|
|
<div data-role="footer">
|
|
<h4>Page Footer</h4>
|
|
</div><!-- /header -->
|
|
</div><!-- /page -->
|
|
|
|
</body>
|
|
</html> |