Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <meta name = "viewport" content = "width = device-width, initial-scale = 1">
  7. <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
  8. <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
  9. <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
  10. </head>
  11. <body>
  12.  
  13. <div data-role="page" id="pageone" data-theme="b">
  14. <div data-role="header">
  15. <h1>Welcome To My Homepage</h1>
  16. </div>
  17.  
  18. <div data-role="main" class="ui-content">
  19. <p>I Am Now A Mobile Developer!!!</p>
  20. <a href="#pagetwo" class="ui-btn" data-transition="slide" data-direction="reverse">Go to Page Two</a>
  21. </div>
  22.  
  23. <div data-role="footer">
  24. <h1>Footer Text</h1>
  25. </div>
  26.  
  27.  
  28. <div data-role="page" id="pagetwo" data-theme="a">
  29. <div data-role="main" class="ui-content">
  30. <a href="#pageone" class="ui-btn" data-transition="slide">Go to Page One</a>
  31. <a href="#dialog1" class="ui-btn">Go to Dialog One</a>
  32. </div>
  33. </div>
  34.  
  35. <div data-role="page" data-dialog="true" id="dialog1">
  36. <div data-role="main" class="ui-content">
  37. <a href="#pageone" class="ui-btn" data-transition="slide">Go to Page One</a>
  38. <a href="#pagetwo" class="ui-btn" data-transition="slide">Go to Page Two</a>
  39. </div>
  40. </div>
  41.  
  42.  
  43. </div>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement