OneCompiler

GENERAL KNOWLEDGE

1622
<html> <head>

formal element

</head> <body>
  <h3>genera programming</h3>
  <form>
   
    first name:<input type="text"  name="first name" /><br>
    
    last name:<input type="text" name ="last name " /><br>
 
  </form>
 
  <h3>Type your password </h3>
 
 <form>
 
   password: <input type="password " name ="pwd"/>

 </form>
 
 <h3>gender</h3>
 
  <form> 
 
  <input type="radio" name="sex" value="male"/>male<br />
 
  <input type="radio" name="sex" value="female" /> male<br />
 
  </form>
 
  <h3> subject </h3>
  
  <form>
    <input type="checkbox" name="subject" valeue="science" /> science<br />
    
    <input type="checkbox" name="subjecT" value="management" /> management<br />
    
 
  </form>

  <h3>submit with your username</h3>
  
 
  <form name="INPUT" ACTION="html_form_action.asp" method="get">
  
   username : <input type="text" name="user" />
   
   <input type="submit " value"submit" />
   
  </form>
  
  <p> Creator= BM</p>
</body> </html>