Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions Section B/1905373_practical3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<body>

<h2>Fill the following information: </h2>


<form action="/action_page.php">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" ><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname"><br><br>
<h3>Select your Gender: </h3>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label><br>
<h3>Choose one or more Hobbies: </h3>

<input type="checkbox" id="Hobby1" name="Hobby1" value="Dance">
<label for="Hobby1"> Dance</label><br>
<input type="checkbox" id="Hobby2" name="Hobby2" value="Singing">
<label for="Hobby"> Singing</label><br>
<input type="checkbox" id="Hobby3" name="Hobby3" value="Boating">
<label for="vehicle3"> Boating</label><br>
<input type="checkbox" id="Hobby4" name="Hobby4" value="Travelling">
<label for="vehicle3">Travelling</label><br><br>
<h3>Write your Suggestions and Output here: </h3>
<textarea name="Output" rows="8" cols="30">The form filling process comes out to be very easy and efficient. Well done !!</textarea>
<br><br>
<input type="submit" value="Submit">
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>

</body>
</html>