0% found this document useful (0 votes)
8 views3 pages

HTML Form Final

This document is an HTML code for an application form designed for an annual competition for creative minds. It includes fields for personal information, gender selection, grade choice, participation categories, address, image upload, and a rating system. The form features submit and reset buttons for user interaction.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views3 pages

HTML Form Final

This document is an HTML code for an application form designed for an annual competition for creative minds. It includes fields for personal information, gender selection, grade choice, participation categories, address, image upload, and a rating system. The form features submit and reset buttons for user interaction.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Html Form Final

<html>

<body>

<center>

<h1> Application Form </h1>

<h3> Annual Competetion for Creative Minds </h3>

<form>

<fieldset>

<legend> Personal Information </legend>

<label> First Name </label><br>

<input type="text" name="First Name"><br>

<label> Last Name </label><br>

<input type="text" name="Last Name"><br>

<label> Email ID </label><br>

<input type="email" name="Email ID"><br>

<label> Password </label><br>

<input type="password" name="Password"><br>

<label> Birth Date </label><br>

<input type="date" name="Birth Date"><br>

<label> Age </label><br>

<input type="number" name="Age" min="10" max="30"><br>

<label> Gender </label><br>


<input type="radio" name="Gender" value="male"> Male </input>

<input type="radio" name="Gender" value="female"> Female </input><br>

<label> Choose Your Grade </label><br>

<select name="grade">

<option value="1"> Grade 1 </option>

<option value="2"> Grade 2 </option>

<option value="3"> Grade 3 </option>

<option value="4"> Grade 4 </option>

<option value="5"> Grade 5 </option>

<option value="6"> Grade 6 </option>

<option value="7"> Grade 7 </option>

<option value="8"> Grade 8 </option>

<option value="9"> Grade 9 </option>

<option value="10"> Grade 10 </option>

</select><br>

<label> Select the category for Participation.(You Can Select More Than 1) </label><br>

<input type="checkbox" name="category" value="animation">

<label> Animation </label>

<input type="checkbox" name="category" value="3D Modelling">

<label> 3D Modelling </label>

<input type="checkbox" name="category" value="Game Design">

<label> Game Design </label><br>

<label> Address </label><br>

<textarea name="Address" rows="3" cols="50" > </textarea><br>

<label> Upload Image </label><br>

<input type="file" name="Upload Image"><br>

<label> Rate Us (from 1 to 10) </label><br>

<input type="range" name="range" min="1" max="10"><br>

<input type="submit" value="Register">

<input type="reset" value="Clear">

</fieldset>
</form>

</center>

</body>

</html>

You might also like