Hi, friends!
This is Deepak Sharma, today I have learned about the application form in HTML.The code is easy to understand but
lengthy to write.
It is very useful in many fields as you know about that.
Let's see what the code is,
<html Lang="fr">
<head>
<title>Application form</title>
</head>
<body>
<h1><font face="Algerian" color="black">
<center>Application form</center>
</font>
</h1>
<form method="post">
<p><b>first name</b>
<input type="text" name="first name"/>
</p>
<br>
<p><b>last name</b>
<input type="text" name="last name"/>
</p>
<br>
<p><b>Email address</b>
<input type="text" name="Email
address"/>
</p>
<br>
<p><b>Sex</b>
<input type="radio" name="Sex"
value="Male"/>Male
<input type="radio" name="Sex" value="Female"/>Female
</p>
<br>
<p><b>Hobbies</b>
<input type="checkbox" name="Hobbies" value="Painting"/>Painting
<input type="checkbox" name="Hobbies" value="Reading"/>Reading
</p>
<br>
<p><select name="Jobs">
<option value="Software engineering">
Software engineering
</option>
<option value="Data entry">Data entry </option>
<option value="Doctor">Doctor</option>
</select>
</p>
<br>
<p><b>Introduction</b>
<textarea rows="6" cols="50" name= "Introduction">Write your text
</textarea>
</p>
<br>
<input type="submit" value="Send the information"/>
<br><br>
<input type="reset" value="Clear the information"/>
</form>
</body>
You can try it yourself,and checkout the output of the code.
