Advertisement
1xptolevitico69

Linking Pages

Nov 21st, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. .iframe {
  10. background-color:khaki;
  11. width:1000px;
  12. height:100vh;
  13. position:absolute;
  14. right:0;
  15. top:0;
  16.  
  17. }
  18.  
  19. div {
  20. position:absolute;
  21. display:none;
  22. width:100%;
  23. height:100vh;
  24. background-color:navy;
  25. text-align:center;
  26. }
  27.  
  28. body {
  29. margin:0;
  30. width:100%;
  31. }
  32.  
  33. a {
  34. display:block;
  35. margin:10px;
  36. }
  37.  
  38. .a {
  39. margin:10px;
  40. display:inline-block;
  41. }
  42.  
  43. :target {
  44. display:block;
  45.  
  46. }
  47.  
  48. ._1 {
  49. color:white;
  50. font-size:100px;
  51. position:absolute;
  52. top:50%;
  53. left:50%;
  54. transform:translate(-50%,-50%);
  55. }
  56.  
  57. ._2 {
  58. color:white;
  59. font-size:100px;
  60. position:absolute;
  61. top:50%;
  62. left:50%;
  63. transform:translate(-50%,-50%);
  64. }
  65.  
  66. .b {
  67. margin:10px;
  68. display:block;
  69. }
  70.  
  71.  
  72. </style>
  73. </head>
  74. <body>
  75.  
  76.  
  77. <iframe class='iframe' name='box' frameborder='0'></iframe>
  78.  
  79. <div id='page1'><span class='_1'>Page 1</span></div>
  80. <div id='page2'><span class='_2'>Page 2</span></div>
  81.  
  82. <span class='a'>
  83. <a href='#page1' target='box'>Go to page1</a>
  84. <a href='#page2' target='box'>Go to page2</a>
  85. </span>
  86.  
  87. <span class='b'>
  88. <a href='https://zsndndbaxq8vhlfcswjbiq-on.drv.tw/Linking Html Pages/page 1.html' target='box'>Go to page1/web</a>
  89. <a href='https://zsndndbaxq8vhlfcswjbiq-on.drv.tw/Linking Html Pages/page 2.html' target='box'>Go to page2/web</a>
  90. </span>
  91.  
  92. </body>
  93. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement