mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-19 23:40:25 +00:00
29 lines
No EOL
740 B
HTML
Executable file
29 lines
No EOL
740 B
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
|
|
<title>Page Title</title>
|
|
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
|
|
<script src="http://code.jquery.com/jquery-1.5.min.js"></script>
|
|
<script src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a2.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><!-- /footer -->
|
|
</div><!-- /page -->
|
|
|
|
</body>
|
|
</html> |