XAgent-Smith

temp

Dec 6th, 2020 (edited)
616
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html lang="en">
  4.  
  5. <head>
  6.  
  7.     <meta charset="UTF-8">
  8.  
  9.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10.  
  11.     <title id="title">Document</title>
  12.  
  13.     <link rel="stylesheet" href="./styles.css">
  14.  
  15. </head>
  16.  
  17.  
  18.  
  19. <body>
  20.  
  21.     <div class="header">
  22.  
  23.         <h1>STUDENT SURVEY
  24.  
  25.         </h1>
  26.  
  27.     </div>
  28.  
  29.     <p id="description">All students who want to join the Pie Alpha Kappa Club are required to fill this form.</p>
  30.  
  31. <div >
  32.  
  33.     <br>
  34.  
  35.     <form action="/action_page.php">
  36.  
  37.         <label for="name" id="name" class="W">
  38.  
  39.             First name:
  40.  
  41.         </label>
  42.  
  43.        
  44.  
  45. <div class="pinga"><br>
  46.  
  47.         <input type="text" required id="name-label" class="name-label" name="name" placeholder="e.g. Alex">
  48.  
  49.         <br>
  50.  
  51.     </div>
  52.  
  53.        
  54.  
  55.         <br><br>
  56.  
  57.        
  58.  
  59.        
  60.  
  61.             <label for="email" id="email" class="W">Enter your email:</label>
  62.  
  63.            
  64.  
  65.             <div class="pinga"><br>
  66.  
  67.             <input type="email" required id="email-label" name="email" placeholder="[email protected]"><br>
  68.  
  69.         </div>
  70.  
  71.  
  72.  
  73.             <br><br>
  74.  
  75.            
  76.  
  77.                 <label for="birthdaytime" id="Birthdate"class="W">Birthday (date and time):</label>
  78.  
  79.                 <div class="pinga"><br>
  80.  
  81.                 <input type="datetime-local" required id="birthdaytime" name="birthdaytime"><br>
  82.  
  83.             </div>
  84.  
  85.                     <br><br>
  86.  
  87.  
  88.  
  89.    
  90.  
  91.         <label for="phone" id="number" class="W">Enter a phone number:</label>
  92.  
  93.         <div class="pinga"><br>
  94.  
  95.                 <input type="tel" id="number-label" name="phone" placeholder="123-45-678" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}" required>
  96.  
  97.                 <br>
  98.  
  99.             </div>
  100.  
  101.                 <br><br>
  102.  
  103.    
  104.  
  105.    
  106.  
  107.  
  108.  
  109. <label for="Subject" id="Subjects" class="W">Choose your Subjects</label >
  110.  
  111.  
  112.  
  113. <div class="pinga"><br>
  114.  
  115.     <select name="Subjects"  required id="subjects">
  116.  
  117.  
  118.  
  119.     <option class="K" value="">None</option>
  120.  
  121.     <option  class="K"value="Astrophysics">Astrophysics</option>
  122.  
  123.     <option class="K" value="Integral Calculus">Integral Calculus</option>
  124.  
  125.     <option class="K"value="3D Geometry">3D Geometry</option>
  126.  
  127.     <option class="K" value="Vector Analysis">Vector Analysis</option>
  128.  
  129.     </select><br>
  130.  
  131. </div>
  132.  
  133.     <br><br>
  134.  
  135.  
  136.  
  137.         <p class="W">Please select your gender:</p>
  138.  
  139.         <div class="radio">
  140.  
  141.         <input type="radio" required id="male" name="gender" value="male">
  142.  
  143.         <label for="male" class="R">Male</label>
  144.  
  145.         <input type="radio" id="female" name="gender" value="female">
  146.  
  147.         <label for="female" class="R">Female</label>
  148.  
  149.         <input type="radio" id="other" name="gender" value="other">
  150.  
  151.         <label for="other" class="R">Other</label>
  152.  
  153.     </div>
  154.  
  155.         <br>  <br>
  156.  
  157.  
  158.  
  159.         <p class="W">Please select your age:</p>
  160.  
  161.         <div class="radio">
  162.  
  163.         <input type="radio" required id="age1" name="age" value="30">
  164.  
  165.         <label for="age1" class="R">15 - 20</label>
  166.  
  167.         <input type="radio" id="age2" name="age" value="60">
  168.  
  169.         <label for="age2" class="R">20 - 25</label>  
  170.  
  171.         <input type="radio" id="age3" name="age" value="100">
  172.  
  173.         <label for="age3" class="R">25 - 30</label>
  174.  
  175.     </div>
  176.  
  177.         <br>
  178.  
  179.  
  180.  
  181.  
  182. <br>
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191. <label for="review" id="review" class="W">Review</label><br>
  192.  
  193. <div class="pinga"><br>
  194.  
  195. <textarea  required name="review" rows="4" cols="50" id="textarea">
  196.  
  197.    
  198.  
  199.     </textarea><br></div>
  200.  
  201.     <br><br>
  202.  
  203.     <input type="submit" value="Submit" class="Submit">
  204.  
  205.     <input type="reset" class="Submit">
  206.  
  207. </form>
  208.  
  209.  
  210.  
  211. </div>
  212.  
  213.  
  214.  
  215. </body>
  216.  
  217. </html>
Advertisement
Add Comment
Please, Sign In to add comment