write a html code for registration form.

in this tutorial we are write a code for user registration form. in this form me are having friends name, gender, address, city, field of interest submit and reset button.
code:-

<html>
<body>
    <h1 align="center">registration form</h1>
    <form name="f1">
    name:<input type="text" name="t1">
    <br>
    <br>
    <label>gender:</label><br>
    <input type="radio" name="r1">male<br>
           <input type="radio" name="r1">male<br>
    <br>
    <be>
    address:<textarea name="t3"></textarea>
    <br>
    <br>
    select city:
        <select name="s1">
        <option>mumbai</option>
        <option>pune</option>
        <option>kolhapur</option>
        <option>nagpur</option>
        </select>
    <br>
    <br>
    <label>field:</label><br>
    <input type="checkbox" name="c1">marketing<br>
    <input type="checkbox" name="c1">back offic woork<br>
    <input type="checkbox" name="c1">field worK<br>
    <br>
    <br>
    <input type="submit" value="submit"><br>
    </form>
    </body>
</html>

output:-
write a html code for registration form..


Post a Comment

0 Comments