Tutorial Categories
Tools and Software
Site Search


Advanced Search
Tutorial Options
Popular Tutorials
  1. Photoshop Concept Car Makeover
  2. Photoshop Man Of Fire Part I
  3. Photoshop Man Of Fire Part II
  4. Photoshop Magic Marker Effect
  5. Photoshop Car Makeover Part II
No popular tutorials found.
Popular Authors
  1. Cory Crampton
  2. Daniel Phillips
  3. tanmay goswami
  4. Rails Forum
  5. Brendan Horverson
  6. CodeCrunch Tutorial Bot
  7. PhotoshopBee .com
  8. Jamie Lewis
  9. Nick Cote
  10. Luther Avery
No popular authors found.
 »  CodeCrunch  »  HTML and CSS  »  HTML Intermediate Tutorial: Phase 2
HTML Intermediate Tutorial: Phase 2
By Daniel Phillips | Published  07/20/2006 | HTML and CSS | This tutorial viewed 668 times
HTML Intermediate Tutorial: Phase 2

1. For text Fields - useful for when you want a user to enter letters or numbers into a form.

To create a text field, you simply need to make an input tag look like this.

<input type="text" name="Age">

2. Radio Buttons - these handy little devices allow a user to select an option from

So say you wanted your users to tick either"male" or "female"

<input type="radio" name="sex" value="male"> Male

<br>

<input type="radio" name="sex" value="female"> Female

 

This would display something like this in a browser!

3.Check Boxes - Well they are.... check boxes, its pretty self explanatory!

<input type="checkbox" name="bike">

I have a dog

<br>

<input type="checkbox" name="cat">

I have a cat

This will simply place checkboxes with the options next to them!




Comments
  • Comment #1 (Posted by sachin shetty)

    its very nice.. i have learnt a lot here..do continue this tutor till one can really master html please...hatsoff
     
Submit Comment