New user login

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Form</title>
</head>
<body>

    <fieldset style="width: 30%; margin: auto; background-color: burlywood;" >
<legend style="margin: auto; background-color: cadetblue;">InformationForm</legend>

</select>
    <form action="">
    <table border="01px" cellpadding="10px" cellspacing="0px">
<tr>
    <td><label for="fname">Name</label></td>
    <td><input type="text" name="" id="fname"></td>
</tr>
<tr>
<td> <label for="pw">Password</label></td>
<td><input type="password" name="" id="pw"></td>

</tr>
<tr>
<td><label for="gender">Gender</label></td>
<td><label for="Male">Male</label>  <input type="radio" name="gender" id="Male">
<label for="female">Fe-Male</label>  <input type="radio" name="gender" id="female">
<label for="other">Other</label>  <input type="radio" name="gender" id="other"></td>

</tr>
<tr>
    <td>Select Country</td>
    <td ><label for="Select" ></label>
    <select name="" id="select">
    <option value="sc" selected hidden >Select Your Country</option>
    <option value="Nepal">Nepal   </option>
    <option value="India">India   </option>
    <option value="China">China   </option>
    <option value="Bhutan">Bhutan   </option>
</select>
    
    </td>
</tr>




<tr>
<td><label for="hob">hobbies</label></td>
    <td>
<label for="fb">Football</label> <input type="checkbox" name="hobbies" id="fb">
<label for="sg">Singing</label> <input type="checkbox" name="hobbies" id="sg">
<label for="co">Cooking</label> <input type="checkbox" name="hobbies" id="co">
</td>

</tr>
<tr>
    <td><label for="about">More About Yourself:</label></td>
    <td><textarea name="about" id="about" cols="45" rows="5"></textarea></td>

</tr>
<tr  >
<td colspan="2" align="center"><button>Submit</button>
<input type="reset" value="reset">
</td>

</tr>




    </table>
</form>
</select>
</body>
</html>

Comments

Popular Posts