Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. </head>
  6. <body>
  7. <table id="HUD">
  8. <tr>
  9. <td id="hp">
  10. <hr>
  11. HP
  12. <br>
  13. <progress id="HP" value="100" max="100"></progress>
  14. <hr>
  15. </td> <!--HP bar here-->
  16. <td id="gold">
  17. <hr>
  18. Gold accumulated:
  19. <br>
  20. <span id="goldAccumulated"></span> nuggets
  21. <hr>
  22. </td> <!--Money u got $$$-->
  23. <td id="missions">
  24. <hr>
  25. MISSIONS
  26. <hr>
  27. </td> <!--Quests to get stuff-->
  28. <td id="inventory">
  29. <hr>
  30. INVENTORY
  31. <hr>
  32. </td> <!--Stuff you got-->
  33. <td id="lab">
  34. <hr>
  35. LABORATORY
  36. <hr>
  37. </td> <!--Useful upgrades-->
  38. </tr>
  39. </table> <!--HUD bar-->
  40. <!----------------------------------------------------------------------------->
  41. <div id="main">
  42.  
  43. <!--First-->
  44. <div id="1">
  45. You woke up in the middle of the woods. "~I dunno remember anything~"
  46. <hr></div>
  47.  
  48. <!--SecondA-->
  49. <div id="2a" class="level2">
  50. Walking to the north, you found 'n old mansion<hr>
  51. </div><!--Found a mansion-->
  52.  
  53. <!--SecondB-->
  54. <div id="2b" class="level2">
  55. Walking to the south, you got lost in the woods<hr>
  56. </div><!--Got lost-->
  57.  
  58. <!--ThirdA-->
  59. <div id="3a" class="level3">
  60. You got into the old building. The first thing you see is a dusty hallway. A huge stair leads to the upper landing.
  61. <hr>
  62. </div><!--Inside the mansion-->
  63.  
  64. <!--ThridB-->
  65. <div id="3b" class="level3">
  66. You did not go in to the mansion andjust went deeper into the woods.
  67. You found a frozen lake. You barely have energy left
  68. <hr>
  69. </div><!--Passed, found a lake-->
  70.  
  71. <!--ThirdD-->
  72. <div id="3d" class="level3">
  73. You were able to remain calmed and you start to think clearly. The night is coming and you gather wood to make a camp to rest. The fire is set.
  74. <hr>
  75. </div><!--Build camp-->
  76.  
  77. <!--FourthA-->
  78. <div id="4a" class="level4">
  79. You found the kitchen. You grab some food that you found in some cabinets. You notice that there is an <span id="oldMan">old homeless man</span> inside. There is some <span id="25nuggets">gold</span> on the ground
  80. <hr>
  81. </div>
  82.  
  83. <!-------------Endings------------->
  84. <div id="endingA" class="ending">
  85. You kept running for minutes trying to go back to a known place. You see the same trees again and again. You start hearing voices in your head, and you fell asleep. Three days later, a group of explorers found you on the ground... <br><br><br> ...dead
  86. <br><br> ~The end
  87. <hr>
  88. </div><!--Died in the forest-->
  89. </div>
  90. <!----------------------------------------------------------------------------->
  91. <div id="sidebar">
  92. <!--Options for 1-->
  93. <div id="for1" class="option">
  94. <button id="north">Walk to the north</button>
  95. <button id="south">Walk to the south</button>
  96. </div>
  97.  
  98. <!--Options for 2a-->
  99. <div id="for2a" class="level2 option"> <!--Found a house-->
  100. <button id="enter">Get in the house</button>
  101. <button id="pass">Keep movin'. Don't get in</button>
  102. </div>
  103.  
  104. <!--Options for 2b-->
  105. <div id="for2b" class="level2 option"><!--Lost in the woods-->
  106. <button id="run">Freak out 'n run away!</button>
  107. <button id="stay">Stay clamed and do nothing</button>
  108. </div>
  109.  
  110. <!--Options for 3a-->
  111. <div id="for3a" class="level3 option">
  112. <button id="kitchen">Look for somethin' to eat</button>
  113. <button id="bedroom">Look for some place to rest</button>
  114. </div>
  115. <!--Options for 3b-->
  116. <!--Options for 3d-->
  117.  
  118. </div>
  119. <!----------------------------------------------------------------------------->
  120. </body>
  121. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement