How to Create a Simple From to use HTML?

Encrypting your link and protect the link from viruses, malware, thief, etc! Made your link safe to visit.

How to Create a Simple From to use HTML?

<!DOCTYPE html>
<html>
<head>
    <title>Technovoot</title>
</head>
<body>
    <h2>Welcome To Technovoot</h2>
    <form>
    <fieldset>
   <legend><strong>enter your deatils</strong></legend>
   Fist Name: <br>
   <input type="text" name="fist name"></input> <br>
   Last Name: <br>
   <input type="text" name="Last Name"></input><br>
   Age : <input type="Radio" name="Age"  ></input> Under age: <input type="radio" name="Age"></input><br>
  DOB: <input type="dob" name="dob"></input><br>
    Cotegery
    <select type="Caste">
   <option>GN</option>
   <option>OBC</option>
   <option>SC</option>
   <option>Other</option>
    </select><br><br>
    <input type="submit" name="submit"></input>
    <input type="reset" name="reset"></input>
    </fieldset>
    </form>
    </body>
</html>

Expected Output:



How to Create a Simple From to use HTML?
How to Create a Simple From to use HTML?

Comment

Post a Comment