Listing the hotel rooms
Now let's look at rooms.html
. This is where we will list out the room types available at the hotel:
Listing 5-3: rooms.html <div data-role="page"> <div data-role="header"> <h1>Our Rooms</h1> </div> <div role="main" class="ui-content"> <p> Select a room below to see a picture. </p> <ul data-role="listview" data-inset="true"> <li><a href="room_poor.html">Simple Elegance</a></li> <li><a href="room_medium.html">Gold Standard</a></li> <li><a href="room_high.html">Emperor Suite</a></li> </ul> </div> <div data-role="footer"> <h4>© Camden Hotel 2016</h4> </div> </div>
The...