REGISTRATION FORM IN HTML
<html>
<body>
<marquee acrollamount="1"><b>THE ELITE</b></marquee><br><br>
<h style="border:2px solid tomato;">
<b>REGISTRATION DETAILS:</b></h><br><br>
<form >
first name: <input type="text"name="fname"><br>
file: <input type="file"name="file"><br>
<input type="submit">
<label for="lname">Last name:</label><br>
<input type="text" id="lname"name="lname"><br>
<label for="mobile">Mobile number:</label><br>
<input type="digits" id="mobile"name="mobile"><br>
<label for="email">email:</label><br>
<input type="text" id="email"name="email"><br>
</form>
choose your gender:<input type="radio" id="gender" name="gender" value="female">female
<input type="radio" id="gender" name="gender" value="male">male
</body>
</html>
Comments
Post a Comment