HTML

5.5_clubform.html

Nov 18th, 2016
171
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.19 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Club Form</title>
  5. <meta name="author" content="Jacob Howard">
  6. <meta name="description" content="This is an example form for club selection at Milwee Middle School.">
  7. <meta name="keywords" content="club, form, submission, html">
  8. <meta charset="UTF-8">
  9. <link rel="stylesheet" type="text/css" href="css\5.5_clubform.css">
  10. <link rel="shortcut icon" type="image/png" href="img\favicons\golfclub.png">
  11. </head>
  12.  
  13. <body>
  14. <center>
  15. <h1>Milwee Middle School club form submission</h1>
  16. <div>
  17. <form>
  18. <label for="grade-levels"><h4>Your Grade Level:</h4>
  19.     <input id="grade" type="radio" name="grade-levels" value="Sixth" checked> Sixth Grade<br>
  20.     <input id="grade" type="radio" name="grade-levels" value="Seventh"> Seventh Grade<br>
  21.     <input id="grade" type="radio" name="grade-levels" value="Eighth"> Eighth Grade<br>
  22. </label>
  23. </form>
  24. </div>
  25. <br>
  26. <form>
  27. <div>
  28. <!-- Where the user enters their name. -->
  29. <label for="name"><h4>Your First and Last Name:</h4>
  30.     <input id="club" type="text" name="name" placeholder="Jacob Howard">
  31. </label>
  32. </form>
  33. <br>
  34. </div>
  35. <br>
  36. <div>
  37. <form>
  38. <!-- Where the user selects their desired club. -->
  39. <label for="club"><h4>Club You Want:</h4>
  40.     <input id="club" type="radio" name="club" value="chess" checked> Chess club<br>
  41.     <input id="club" type="radio" name="club" value="vgd"> Video Game Design club<br>
  42.     <input id="club" type="radio" name="club" value="seaperch"> Seaperch club<br>
  43.     <input id="club" type="radio" name="club" value="jropt"> Junior Optimist club<br>
  44.     <input id="club" type="radio" name="club" value="minecraft"> Minecraft club<br>
  45.     <input id="club" type="radio" name="club" value="cwriting"> Creative Writing club<br>
  46.     <input id="club" type="radio" name="club" value="cphotography"> Cell Phone Photography club<br>
  47.     <input id="club" type="radio" name="club" value="yearbook"> Yearbook club<br>
  48. </label>
  49. </form>
  50. </div>
  51. </center>
  52. <br>
  53. <center>
  54. <!-- The submit button that redirects the user to a thank you page after submitting. -->
  55. <a href="misc\5.5_thankyou.html"><input style="
  56.     height:50px;
  57.     width:400px;
  58.     border: 1px solid white;
  59.     border-radius:15px;
  60.     "type="submit"
  61.     value="Submit">
  62. </a>
  63. </center>
  64. </body>
  65. </html>
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment