Advertisement
PatchRowcester

html page with buttons

May 6th, 2019
1,999
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset='utf-8'>
  5.     <meta http-equiv='X-UA-Compatible' content='IE=edge'>
  6.     <title>Function Declaration vs. Function Expressions</title>
  7.     <meta name='viewport' content='width=device-width, initial-scale=1'>
  8.     <script src='function-dec-exp.js'></script>
  9. </head>
  10. <body>
  11.     <p>Make a section: </p>
  12.     <form>
  13.         <input type="radio" name="question" value=1>Question 1<br>
  14.         <input type="radio" name="question" value=2>Question 2<br>
  15.         <input type="radio" name="question" value=3>Question 3<br>
  16.         <input type="radio" name="question" value=4>Question 4<br>
  17.     </form>
  18.     <p></p>
  19.     <input class="button" name="submit" type="submit" value="submit" onclick="getFormData()" />
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement