0% found this document useful (0 votes)
14 views2 pages

Forms

This document is an HTML code for a simple form example. It includes fields for name input, gender selection via radio buttons, hobbies selection via checkboxes, and buttons for submission and alert. The form is structured with labels and input elements for user interaction.

Uploaded by

divya
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)
14 views2 pages

Forms

This document is an HTML code for a simple form example. It includes fields for name input, gender selection via radio buttons, hobbies selection via checkboxes, and buttons for submission and alert. The form is structured with labels and input elements for user interaction.

Uploaded by

divya
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

<!

DOCTYPE html>

<html>

<head>

<title>Simple HTML Form Example</title>

</head>

<body>

<h2>Sample Form</h2>

<form action="#" method="post">

<!-- Text input -->

<label for="name">Name:</label>

<input type="text" id="name" name="name"><br><br>

<!-- Radio buttons -->

<label>Gender:</label>

<input type="radio" id="male" name="gender" value="male">

<label for="male">Male</label>

<input type="radio" id="female" name="gender" value="female">

<label for="female">Female</label><br><br>

<!-- Checkbox -->

<label>Hobbies:</label>

<input type="checkbox" id="reading" name="hobbies" value="reading">

<label for="reading">Reading</label>

<input type="checkbox" id="sports" name="hobbies" value="sports">

<label for="sports">Sports</label><br><br>

<!-- Submit button -->

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

<!-- Button -->


<input type="button" value="Click Me" onclick="alert('Button clicked!')">

</form>

</body>

</html>

You might also like