0% found this document useful (0 votes)
22 views1 page

Simple HTML Forms

Html forms

Uploaded by

chawaresanket3
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views1 page

Simple HTML Forms

Html forms

Uploaded by

chawaresanket3
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1.

Contact Form
<form>
Email: <input type="email" name="email">
Message: <textarea name="message"></textarea>
<input type="submit" value="Send">
</form>

2. Feedback Form with Radio


<form>
Rate Us:
<input type="radio" name="rate" value="good"> Good
<input type="radio" name="rate" value="average"> Average
<input type="radio" name="rate" value="bad"> Bad
<input type="submit" value="Submit">
</form>

3. Hobbies Form with Checkbox


<form>
<input type="checkbox" name="hobby" value="reading"> Reading
<input type="checkbox" name="hobby" value="music"> Music
<input type="checkbox" name="hobby" value="sports"> Sports
<input type="submit" value="Save">
</form>

4. Course Selection (Dropdown)


<form>
<select name="course">
<option value="ba">B.A</option>
<option value="bsc">[Link]</option>
<option value="bcom">[Link]</option>
</select>
<input type="submit" value="Register">
</form>

You might also like