The home page
Let's begin with the initial home page for the Camden Hotel. This will provide a simple list of options as well as a bit of marketing text at the top. The text doesn't actually help anyone, but the marketing staff won't let us release the website without it:
Listing 5-1: index.html <!DOCTYPE html> <html> <head> <title>The Camden Hotel</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.3.min.js"> </script> <script type="text/javascript" src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> </script> </head> <body> <div data-role="page"> ...