Skip to content

Instantly share code, notes, and snippets.

@BenjaminGuV
Created March 19, 2012 00:02
Show Gist options
  • Save BenjaminGuV/2086354 to your computer and use it in GitHub Desktop.
Save BenjaminGuV/2086354 to your computer and use it in GitHub Desktop.
estructura de html movil
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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>
<title>Titulo</title>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Titulo h1</h1>
</div><!-- /header -->
<div data-role="content">
<p>Contenido</p>
</div><!-- /content -->
<div data-role="footer">
<h4>El pie</h4>
</div>
</div><!-- /page -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment