The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Fff
By Guest on 5th February 2024 09:19:28 AM | Syntax: PYTHON | Views: 107



New Paste New paste | Download Paste Download | Toggle Line Numbers Show/Hide line no. | Copy Paste Copy text to clipboard
  1.  <html>
  2.         <head>
  3.                 <title>Forms</title>
  4.         </head>
  5.        
  6.         <body
  7.         <form action="submit_form" method="post">
  8.   <label for="name">Name<br>
  9.   <input type="text" id="name" name="name"><br>
  10.  
  11.   <br/>
  12.  
  13.   <label for="age">Age:</label><br>
  14.   <input type="number" id="age" name="age"><br>
  15.  
  16.   <br/>
  17.  
  18.   <label for="gender">Gender:</label><br>
  19.   <input type="radio" id="male" name="gender" value="male">
  20.   <label for="male">Male</label><br>
  21.   <input type="radio" id="female" name="gender" value="female">
  22.   <label for="female">Female</label><br>
  23.   <input type="radio" id="other" name="gender" value="other">
  24.   <label for="other">Other</label><br>
  25.  
  26.   <br/>
  27.  
  28.     <label for="E-mail">E-mail<br>
  29.   <input type="text" id="name" name="name"><br>
  30.  
  31.   <br/>
  32.  
  33.   <label for="E-mail">Password<br>
  34.   <input type="Password" id="name" name="name"><br>
  35.  
  36.   <br/>
  37.  
  38.   <label for="paragraph">About Myself:</label><br>
  39.   <textarea id="paragraph" name="paragraph" rows="4" cols="50"></textarea><br>
  40.   <br/>
  41.  
  42.   <label for="hobbies">Hobbies:</label><br>
  43.   <input type="checkbox" id="gamining" name="hobbies" value="gamining">
  44.    <label for="Gamining">Gamining</label><br>
  45.     <input type="checkbox" id="Reading" name="hobbies" value="reading">
  46.    <label for="Reading">Reading</label><br>
  47.     <input type="checkbox" id="Drawing" name="hobbies" value="Drawing">
  48.    <label for="Drawing">Drawing</label><br>
  49.   <br/>
  50.  
  51.   <input type="submit" value="Submit">
  52.  
  53. </form>
  54.   </body>
  55. </html>





fff