<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>The Title</title> <link rel="stylesheet" href="csswork/jquery.mobile.min.css" /> <script src="AJAXDomJavaScript/jquery.min.js"></script> <script src="AJAXDomJavaScript/jquery.mobile.min.js"></script> <meta name="viewport" content="width=device-width, initial-scale=1"> if you don't want it to scale, CAN ALSO BE <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> </head> <body> <div data-role="page"> <div data-role="header"> (best to use h1 in header) (predefined with jQuery Mobile as left, title, and right subareas) </div> <div data-role="content"> </div> <div data-role="footer"> (best to use h4 in footer) </div> </div> </body> </html> PICK UP AT PG 42