main_menu.rml 689 B

12345678910111213141516171819202122232425262728
  1. <rml>
  2. <head>
  3. <title>Main Menu</title>
  4. <link type="text/template" href="../../assets/window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 300px;
  9. height: 225px;
  10. margin: auto;
  11. }
  12. div#title_bar div#icon
  13. {
  14. icon-image-s: 179px 230px;
  15. icon-image-t: 152px 191px;
  16. }
  17. </style>
  18. </head>
  19. <body template="window" onload="load logo">
  20. <button onclick="goto start_game; close logo">Start Game</button><br />
  21. <button onclick="goto high_score; close logo">High Scores</button><br />
  22. <button onclick="goto options; close logo">Options</button><br />
  23. <button onclick="goto help; close logo">Help</button><br />
  24. <button onclick="exit">Exit</button>
  25. </body>
  26. </rml>