Advertisement
Guest User

and

a guest
Mar 29th, 2013
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.32 KB | None | 0 0
  1.     <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5.  
  6.  
  7. <title>Steve jobs Quotesj Mobile App</title>
  8. <link href="jquery-mobile/jquery.mobile-1.0a3.min.css" rel="stylesheet" type="text/css"/>
  9. <script src="jquery-mobile/jquery-1.9.1.min.js" type="text/javascript"></script>
  10.  
  11. <script src="jquery-mobile/jquery.mobile-1.3.0.min.js" type="text/javascript"></script>
  12.  
  13.  
  14. <!-- This reference to phonegap.js will allow for code hints as long as the current site has been configured as a mobile application.
  15.      To configure the site as a mobile application, go to Site -> Mobile Applications -> Configure Application Framework... -->
  16. <script src="/phonegap.js" type="text/javascript"></script>
  17. </head>
  18. <body>
  19.  
  20. <div data-role="page" id="page">
  21.     <div data-role="header">
  22.         <h1>Steve jobs Quotes</h1>
  23.     </div>
  24.     <div data-role="content">  
  25.         <ul data-role="listview">
  26.             <li><a href="q1.html" rel="external">A-Z Quotes</a></li>
  27.  
  28. <li><a href="javascript:randomlink()" data-theme="b" data-icon="randomdrink" data-iconpos="notext">Random Quotes</a></li>
  29.  
  30.    
  31.  
  32.             <li><a href="#bio">Biography</a></li>
  33.             <li>
  34.   <a href="q1.html" data-rel="dialog" rel="external">About</a>
  35.         </li></ul>     
  36.     </div>
  37.     <div data-role="footer">
  38.         <h4>Steve jobs Quotes</h4>
  39.     </div>
  40. </div>
  41.  
  42.  
  43.  
  44. <div data-role="page" id="bio">
  45.     <div data-role="header">
  46.         <h1>Biography</h1>
  47.     </div>
  48.     <div data-role="content">  
  49.         <p><b>NAME:</b> Steve Jobs <br>
  50.  
  51. <b>OCCUPATION:</b>  Entrepreneur <br>
  52.  
  53. <b>BIRTH DATE:</b> February 24, 1955 <br>
  54.  
  55. <b>DEATH DATE:</b> October 05, 2011 <br>
  56.  
  57. <b>EDUCATION:</b>  Reed College, Homestead High School <br>
  58.  
  59. <b>PLACE OF BIRTH:</b> San Francisco, California <br>
  60.  
  61. <b>PLACE OF DEATH:</b>  Palo Alto, California <br>
  62.  
  63. <b>AKA:</b>  Steve Jobs <br>
  64.  
  65. <b>AKA:</b>  Steven Jobs<br>
  66. </p>   
  67.     <img src="imagesdir/Steve-Jobs-dates.jpg" width="620" height="434" alt="Steve Jobs Pic"></div>
  68.     <div data-role="footer">
  69.         <h4>Steve jobs Quotes</h4>
  70.     </div>
  71. </div>
  72.  
  73. <div data-role="page" id="abt">
  74.     <div data-role="header">
  75.         <h1>About</h1>
  76.     </div>
  77.     <div data-role="content">  
  78.         This Application is developed by Wadibahi.
  79.         <br>
  80. Version: 0.1.1     
  81.     </div>
  82.    
  83.     <a href="sms:444?body=content">Tap to say hello!</a>
  84.     <div data-role="footer">
  85.         <h4>Steve jobs Quotes</h4>
  86.     </div>
  87. </div>
  88.  
  89. </body>
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement