Advertisement
CaptainLepidus

HTML Source

Dec 13th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.09 KB | None | 0 0
  1.  
  2. <html>
  3. <head>
  4. <title>
  5. Warmup - Hangar</title>
  6. <link href="style.css" rel="stylesheet" type="text/css"/>
  7. <script type='text/javascript'>
  8. function go(url)
  9. {
  10. window.location=url;
  11. }
  12. function gt(page)
  13. {
  14. go("index.php?page="+page);
  15. }
  16. function pop(title,text)
  17. {
  18. document.body.innerHTML+=("<div class='pop' style='top: 200px;'><text class='ptitle'>" + title + "</text><text class='pclose' onclick='parentNode.parentNode.removeChild(parentNode);'>X</text><br><text class='pcontent'>" + text + "</text></div>");
  19. }
  20. </script>
  21. </head>
  22. <body>
  23. <div class='game'>Hangar.<div class='buttons'>
  24. <input type='button' value='Map' onclick="gt('map')"/>
  25. <input type='button' value='Area' onclick="gt('area')"/>
  26. <input type='button' value='Hangar' onclick="gt('hangar')"/>
  27. <input type='button' value='Cargo Bay' onclick="gt('cargo')"/>
  28. </div>
  29.  
  30. <div class='stats'>
  31. CaptainLepidus <a href='form.php?form=logout'>Log Out</a>
  32. <br>
  33. Hull: <img src='healthbar.php?hp=50&hpmax=100'/>
  34. <br>
  35. Experience: <img src='healthbar.php?hp=25&hpmax=100&red=255&green=255'/>
  36. <br>
  37. Level: 1
  38. </div></div>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement