Advertisement
Guest User

Math Project code

a guest
May 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.04 KB | None | 0 0
  1. CSS for entire site------>
  2. body {
  3. background-color:lightgray;
  4. color: black;
  5. font-family: Verdana;
  6. }
  7.  
  8. a{
  9. color:darkgray;
  10. text-decoration:none;
  11. }
  12.  
  13. a:hover{
  14. color:gray;
  15. }
  16.  
  17. #spritebox{
  18. height:600px;
  19. width:400px;
  20. background-color:white;
  21. position:fixed;
  22. margin-left:5px;
  23. border-width:3px;
  24. border-style:outset;
  25. border-color:lightgray;
  26. }
  27.  
  28. #infobox{
  29. height:550px;
  30. width:700px;
  31. padding:10px;
  32. background-color:white;
  33. border-width:3px;
  34. border-style:outset;
  35. border-color:lightgray;
  36. float:left;
  37. margin-left:450px;
  38. margin-top:30px;
  39. overflow-y:scroll;
  40. border-radius:10px;
  41. }
  42.  
  43. #infobox1{
  44. height:550px;
  45. width:700px;
  46. padding:10px;
  47. background-color:white;
  48. float:center;
  49. border-width:3px;
  50. border-style:solid;
  51. margin-top:30px;
  52. overflow-y:scroll;
  53. border-radius:10px;
  54. }
  55. ::-webkit-scrollbar {
  56. width:11px;
  57. height:11px;}
  58.  
  59. ::-webkit-scrollbar-track {
  60. border:5px solid {color:scrollbar bg};
  61. background:{color:Scrollbar};}
  62.  
  63. ::-webkit-scrollbar-thumb:vertical{
  64. border:2px solid {color:Scrollbar bg};
  65. width:2px;
  66. background:white;
  67. }
  68.  
  69. ::-moz-selection {background:none; color:black;
  70. {block:iftextshadow}
  71. text-shadow:0 0 3px black;
  72. {/block:iftextshadow}
  73. }
  74. ::selection {background:none; color:black;
  75. {block:iftextshadow}
  76. text-shadow:0 0 3px black;
  77. }
  78.  
  79. HTML for homepage--------------------------------------->
  80. <!DOCTYPE html>
  81. <html>
  82. <head>
  83. <meta charset="UTF-8">
  84. <title>The web site of charliesmathproject</title>
  85. <!-- The style.css file allows you to change the look of your web pages.
  86. If you include the next line in all your web pages, they will all share the same look.
  87. This makes it easier to make new pages for your site. -->
  88. <link href="/style.css" rel="stylesheet" type="text/css" media="all">
  89. </head>
  90. <body>
  91. <center>
  92. <div id="infobox1">
  93. <br><br><br>
  94. <img src="sadsfdghfjghjk.png" width=400px/><br><br>
  95. <h1>WELCOME TO CHARLIE'S MATH GAME</h1><br>
  96. <a href="/1.html">SKIP TO GAME</A> / <a href="/how2play.html">HOW TO PLAY</a> / <a href="/credit.html">CREDITS</A><br><br>
  97. </div>
  98. </body>
  99. </html>
  100.  
  101. HTML for questions--------------------------------------------->
  102. <!DOCTYPE html>
  103. <html>
  104. <head>
  105. <meta charset="UTF-8">
  106. <title>The web site of charliesmathproject</title>
  107. <!-- The style.css file allows you to change the look of your web pages.
  108. If you include the next line in all your web pages, they will all share the same look.
  109. This makes it easier to make new pages for your site. -->
  110. <link href="/style.css" rel="stylesheet" type="text/css" media="all">
  111. </head>
  112. <body>
  113. <!-- SCM Music Player http://scmplayer.co -->
  114. <script type="text/javascript" src="https://scmplayer.co/script.js"
  115. data-config="{'skin':'skins/aquaBlue/skin.css','volume':50,'autoplay':false,'shuffle':false,'repeat':1,'placement':'bottom','showplaylist':false,'playlist':[{'title':'Cabinet Man','url':'https://www.youtube.com/watch?v=SU1ILi7cc9k'},{'title':'Two Trucks','url':'https://www.youtube.com/watch?v=z9wXfeMrL44'},{'title':'Everybody Likes You','url':'https://www.youtube.com/watch?v=4xElp-lYnyE'},{'title':'I Understand','url':'https://www.youtube.com/watch?v=PtBCIZeVFio'},{'title':'Buttercup','url':'https://www.youtube.com/watch?v=e2qG5uwDCW4'}]}" ></script>
  116. <!-- SCM Music Player script end -->
  117. <div id="spritebox">
  118. <img src="https://cdn.discordapp.com/attachments/441739393552613388/445721213277437962/wait.png" height=550px width=400px><br>
  119. <center>waiting...</center>
  120. <center><div style="font-size:20px;"><b><a href="progress1.html">progress</a><b> </b><a href="/quit.html">quit</a></b></div></center>
  121. </div>
  122. <center>
  123. <div id="infobox">
  124. <center>
  125. <h1>PROBLEM 1</h1>
  126. <h3>Solve the multi-step equation to defeat Jude!</h3>
  127. - 7x + 10 = 24 <br><br>
  128. a.)<a href="/wrong.html">x=2</a><br><br>
  129. b.)<a href="/2.html">x=-2</a><br><br>
  130. c.)<a href="/wrong.html">x=4</a><br>
  131. </center>
  132. </body>
  133. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement