Skip to content

Instantly share code, notes, and snippets.

@TranNgocMinh
Created June 13, 2019 03:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TranNgocMinh/fb1c0aba957e1fa7f9c74da13a604633 to your computer and use it in GitHub Desktop.
Save TranNgocMinh/fb1c0aba957e1fa7f9c74da13a604633 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Home</title>
<meta name="viewport" content="width=device-width, initialscale=1">
<link rel="stylesheet" href="jquery.mobile-1.4.5.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page" id="homePage">
<div data-role="header">Welcome</div>
<div data-role="content">
<p>
Welcome to our first mobile web site. It's going to be the
best site you've ever seen. Once we get some content. And
a business plan. But the hard part is done!
</p>
</div>
<div data-role="footer" data-position="fixed" data-id="footernav">
<div data-role="navbar">
<ul>
<li><a href="Home.html" class="ui-btn-active ui-state-persist" data-ajax="false">Home</a></li>
<li><a href="About.html" data-ajax="false" >About</a></li>
<li><a href="Contact.html" data-ajax="false">Contact</a></li>
</ul>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment