Create a page with content only
Description
The following code shows how to create a page with content only.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.3.js'></script>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<style type='text/css'>
body {<!--from w w w.j av a 2 s. c om-->
font-family: "Lucida Grande";
font-size: 200%;
}
</style>
<body>
<div data-role="page" id="start">
<div data-role="content">
<p>Hallo</p>
</div>
</div>
</body>
</body>
</html>