This is the standard page template you should start with on a project:
<!DOCTYPE html>Â
<html>Â
<head>Â
<title>Page Title</title>Â
<meta name="viewport" content="width=device-width, initial-scale=1">Â
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />Â <-----this will need to be updated to the latest cdn link
<script type="text/javascript"Â
src="http://code.jquery.com/jquery-1.6.4.min.js"></script>Â <-----this will need to be updated to the latest cdn link
<script type="text/javascript"Â
src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>Â <-----this will need to be updated to the latest cdn link
</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>