Home arrow HTML arrow Page 2 - HTML Forms
HTML

HTML Forms


In our previous article, we discussed how to create tables in HTML and how to add data to them. In this episode we will go over forms and how to collect data from users. We will learn to create text fields, radio buttons, check-boxes, buttons, drop-down menus, and much much more. There is a lot of ground to cover in this one, so let's go ahead and get started.

Author Info:
By: James Payne
Rating: 4 stars4 stars4 stars4 stars4 stars / 4
February 06, 2008
TABLE OF CONTENTS:
  1. · HTML Forms
  2. · Other Input Types
  3. · Checkboxes
  4. · Buttons
  5. · Sending Data with a Form
  6. · Sending E-Mail Via Forms

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
HTML Forms - Other Input Types
(Page 2 of 6 )

Radio buttons are used when you want the user to choose from a limited number of choices. They are named from old style radio buttons that you press in. Here is a sample of how they look in code:


<html>

<body>

<form action="">

<p>Are You Fat?</p>

Yes:

<input type="radio" checked="checked"

name="Fat" value="yes">

<br>

No:

<input type="radio"

name="Fat" value="no">

</form>

</body>

</html>

This would display:

Are You Fat?

Yes:
No:

Note that the type is "radio" and that the "Yes" radio button's checked value is "checked." This means that in the list of buttons, the "Yes" button is checked by default. If the user clicks on the "No" button, the "Yes" becomes unchecked.

You may also notice that both buttons share the same name. If the buttons are to work together, the name value must be the same. Otherwise when you click on one, then another, they will both remain checked.


blog comments powered by Disqus
HTML ARTICLES

- HTML5 Boilerplate: Working with jQuery and M...
- HTML5 Boilerplate Introduction
- New API Platform for HTML5
- BBC Adopts HTML 5, Mozilla Addresses Issues
- Advanced Sticky Footers in HTML and CSS
- HTML and CSS Sticky Footers
- Strategy Analytics Predicts HTML5 Phones to ...
- HTML5 Guidelines for Web Developers
- Learning HTML5 Game Programming
- More Engaging CSS3 and HTML Background Effec...
- Engaging HTML and CSS3 Background Effects
- More Web Columns with CSS3 and HTML
- Columns with CSS3 and HTML
- Creating Inline-Block HTML Elements with CSS
- Drag and Drop in HTML5: Parsing Local Files

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 10 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials