Home >>HTML Tutorial >HTML Form
<form method="get" action="output.php"> Enter your name<input type="text"/> Enter your email<inpt type="email"/> <input type="submit"/> </form>
Enter your name<input type="text"/>
Enter your Password<input type="password"/>
Enter your Email <input type="email"/>
Enter your Mobile Number <input type="number"/>
select your gender male <input type="radio" name="g" value="male" checked="checked"/> female <input type="radio" name="g" value="female"/>
select your hobbies reading <input type="checkbox" value="reading" /> swimming <input type="checkbox" value="swimming" /> singing <input type="checkbox" value="singing" />
Enter your Address<textarea></textarea>
Upload your resume <input type="file" />
Select your country <select> <option value=""> select your country </option> <option> india </option> <option> pakistan </option> <option> china </option> </select>
<input type="submit" value="Save My Data" />
<input type="reset" value="reset all Data" />