Advertisement
Guest User

index.html

a guest
Mar 28th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lan="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title> Multiplication Quiz! </title>
  6. </head>
  7. <body>
  8.     <form method="get" attribute="post" action="scripts/Multiplication.php">
  9.         <p>Multiplication Quiz!<br/>
  10.         <p><input type="submit" value="Start the quiz!"></input></p>
  11.     </form>
  12.     <button onclick="myFunction()">Help!</button>
  13.     <script>
  14.     function myFunction() {
  15.         alert("On the first page you can either choose to start the quiz or seek help, like you have. On the second page you will see 10 multiplication questions and 10 boxes for your answers, once you have done this you need to click 'Submit Quiz' and on the next page it will show you all of your answers and your total score.");
  16.     }
  17.     </script>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement