Creates a radio button : radio : Form Style HTML CSS TUTORIALS


HTML CSS TUTORIALS » Form Style » radio »

 

Creates a radio button


 
<HTML>
<HEAD>
<TITLE>Forms</TITLE>
</HEAD>

<BODY>
<H2>Feedback Form</H2>
<FORM METHOD = "POST" ACTION = "">

<P><STRONG>How did you get to our site?:</STRONG><BR>
Search engine 
<INPUT NAME = "how get to site" TYPE = "radio"
   VALUE = "search engine" CHECKED>
Links from another site 
<INPUT NAME = "how get to site" TYPE = "radio" 
   VALUE = "link">
Deitel.com Web site 
<INPUT NAME = "how get to site" TYPE = "radio" 
   VALUE = "deitel.com">
Reference in a book 
<INPUT NAME = "how get to site" TYPE = "radio" 
   VALUE = "book">
Other 
<INPUT NAME = "how get to site" TYPE = "radio" 
   VALUE = "other">
</P>

<INPUT TYPE = "submit" VALUE = "Submit Your Entries"
<INPUT TYPE = "reset" VALUE = "Clear Your Entries">
</FORM>

</BODY>
</HTML>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Form Style
» radio