Advertisement
metalni

pyramid[html]

Dec 4th, 2020
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Home</title>
  6.     <link rel="stylesheet" type="text/css" href="style.css">
  7.     <link rel="stylesheet" type="text/css" href="jquery-ui.css">
  8.     <script src="jquery.js"></script>
  9.     <script src="jquery-ui.js"></script>
  10.     <script src="script.js"></script>
  11. </head>
  12. <body>
  13.  
  14.     <div id="high-level">
  15.         <ul>
  16.             <li><a class="click" title="0">Oblivion</a></li>
  17.             <li><a class="click" title="1">Ender's Game</a></li>
  18.             <li><a class="click" title="2">Elysium</a></li>
  19.             <li><a class="click" title="3">Edge of Tomorrow</a></li>
  20.         </ul>
  21.     </div>
  22.  
  23.     <div id="low-level">
  24.         <div>
  25.             <input id="prev" value="prev" type="button"/>
  26.             <input id="top" value="top" type="button"/>
  27.             <input id="next" value="next" type="button"/>
  28.         </div>
  29.  
  30.         <div id="0">
  31.             <label>Title:</label>
  32.             <div>Oblivion</div>
  33.             <label>Desc:</label>
  34.             <div>A veteran assigned to extract Earth's remaining resources begins to question what he knows about his mission and himself.</div>
  35.         </div>
  36.  
  37.         <div id="1">
  38.             <label>Title:</label>
  39.             <div>Ender's Game</div>
  40.             <label>Desc:</label>
  41.             <div>Young Ender Wiggin is recruited by the International Military to lead the fight against the Formics, a genocidal alien race which nearly annihilated the human race in a previous invasion.</div>
  42.         </div>
  43.  
  44.         <div id="2">
  45.             <label>Title:</label>
  46.             <div>Elysium</div>
  47.             <label>Desc:</label>
  48.             <div>In the year 2154, the very wealthy live on a man-made space station while the rest of the population resides on a ruined Earth. A man takes on a mission that could bring equality to the polarized worlds.</div>
  49.         </div>
  50.  
  51.         <div id="3">
  52.             <label>Title:</label>
  53.             <div>Edge of Tomorrow</div>
  54.             <label>Desc:</label>
  55.             <div>A military officer is brought into an alien war against an extraterrestrial enemy who can reset the day and know the future. When this officer is enabled with the same power, he teams up with a Special Forces warrior to try and end the war.</div>
  56.         </div>
  57.  
  58.     </div>
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement