Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, user-scalable=no"/>
  5. <title>Menüü</title>
  6. <link type='text/css' rel='stylesheet' href='index.css'/>
  7. <link href="https://fonts.googleapis.com/css?family=Indie+Flower|Swanky+and+Moo+Moo|Ubuntu&display=swap" rel="stylesheet">
  8. <link href="https://fonts.googleapis.com/css?family=Exo+2&display=swap" rel="stylesheet">
  9. <script type='text/javascript' src='index.js'></script>
  10. <script type='text/javascript' src='module.js'></script>
  11. <h1 id="headertext">Eesti puslemäng</h1>
  12. </head>
  13. <body>
  14. <center>
  15. <div id="main">
  16. <!--..............................MAIN MENU.................................-->
  17. <div id="Page1" class="page" style="">
  18. <button onclick="show('Page2');goack(this)" class="buttoned" value="Loomad">Loomad</button>
  19. <button onclick="show('Page3');goack(this)" class="buttoned" value="Puuviljad">Puuviljad</button>
  20. <button onclick="show('Page4')"class="buttoned">Köögiviljad</button>
  21. <button onclick="show('Page5')"class="buttoned">Mänguasjad</button>
  22. <button onclick="show('Page6')"class="buttoned">Sõiduvahendid</button>
  23. </div>
  24. <!--..............................LOOMAD.................................-->
  25. <div id="Page2" class="page" style="display:none">
  26. <button onclick="show('Page1')" class="buttoned">Menüü</button>
  27. <h1>Loomad</h1>
  28. <div class="pops">
  29. <form action="pusleindex.html">
  30. <input type="submit" value="Kass" class="cat" onclick="foo(this)"/>
  31. </form>
  32.  
  33. <form action="pusleindex.html">
  34. <input type="submit" value="Hobune" class="horse" onclick="foo(this)"/>
  35. </form>
  36.  
  37. <form action="pusleindex.html">
  38. <input type="submit" value="Lammas" class="sheep" onclick="foo(this)"/>
  39. </form>
  40.  
  41. <form action="pusleindex.html">
  42. <input type="submit" value="Koer" class="dog" onclick="foo(this)"/>
  43. </form>
  44. </div>
  45. </div>
  46. <!--..............................PUUVILJAD.................................-->
  47. <div id="Page3" class="page" style="display:none">
  48. <button onclick="show('Page1')"class="buttoned">Menüü</button>
  49. <h1>Puuviljad</h1>
  50. <div class="pops">
  51. <form action="pusleindex.html">
  52. <input type="submit" value="Õun" class="apple" onclick="foo(this)"/>
  53. </form>
  54.  
  55. <form action="pusleindex.html">
  56. <input type="submit" value="Pirn" class="pear" onclick="foo(this)"/>
  57. </form>
  58.  
  59. <form action="pusleindex.html">
  60. <input type="submit" value="Kirsid" class="cherry" onclick="foo(this)"/>
  61. </form>
  62.  
  63. <form action="pusleindex.html">
  64. <input type="submit" value="Maasikas" class="strawberry" onclick="foo(this)"/>
  65. </form>
  66. </div>
  67. </div>
  68.  
  69. <!--..............................Köögiviljad.................................-->
  70. <div id="Page4" class="page" style="display:none">
  71. <button onclick="show('Page1')"class="buttoned">Menüü</button>
  72. <h1>Köögiviljad</h1>
  73. <div class="pops">
  74. <form action="pusleindex.html">
  75. <input type="submit" value="Tomat" class="tomato" onclick="foo(this)"/>
  76. </form>
  77.  
  78. <form action="pusleindex.html">
  79. <input type="submit" value="Porgand" class="carrot" onclick="foo(this)"/>
  80. </form>
  81.  
  82. <form action="pusleindex.html">
  83. <input type="submit" value="Paprika" class="paprika" onclick="foo(this)"/>
  84. </form>
  85.  
  86. <form action="pusleindex.html">
  87. <input type="submit" value="Kurk" class="cucumber" onclick="foo(this)"/>
  88. </form>
  89. </div>
  90. </div>
  91.  
  92. <!--..............................MÄNGUASJAD.................................-->
  93. <div id="Page5" class="page" style="display:none">
  94. <button onclick="show('Page1')"class="buttoned">Menüü</button>
  95. <h1>Mänguasjad</h1>
  96. <div class="pops">
  97. <form action="pusleindex.html">
  98. <input type="submit" value="Robot" class="robot" onclick="foo(this)"/>
  99. </form>
  100.  
  101. <form action="pusleindex.html">
  102. <input type="submit" value="Rannapall" class="ball" onclick="foo(this)"/>
  103. </form>
  104.  
  105. <form action="pusleindex.html">
  106. <input type="submit" value="Lego" class="lego" onclick="foo(this)"/>
  107. </form>
  108.  
  109. <form action="pusleindex.html">
  110. <input type="submit" value="Ruubikukuubik" class="cubic" onclick="foo(this)"/>
  111. </form>
  112. </div>
  113. </div>
  114.  
  115. <!--..............................SÕIDUVAHENDID.................................-->
  116. <div id="Page6" class="page" style="display:none">
  117. <button onclick="show('Page1')"class="buttoned">Menüü</button>
  118. <h1>Sõiduvahendid</h1>
  119. <div class="pops">
  120. <form action="pusleindex.html">
  121. <input type="submit" value="Auto" class="car" onclick="foo(this)"/>
  122. </form>
  123.  
  124. <form action="pusleindex.html">
  125. <input type="submit" value="Mootorratas" class="bike" onclick="foo(this)"/>
  126. </form>
  127.  
  128. <form action="pusleindex.html">
  129. <input type="submit" value="Lennuk" class="plane" onclick="foo(this)"/>
  130. </form>
  131.  
  132. <form action="pusleindex.html">
  133. <input type="submit" value="Rong" class="train" onclick="foo(this)"/>
  134. </form>
  135. </div>
  136. </div>
  137.  
  138.  
  139. </div>
  140. </center>
  141.  
  142.  
  143. </body>
  144. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement