Radio Buttons

Example 3.5 - Form: radio buttons - Example 3.5

 <form method="get" action="https://cs12.net/form/submit.php">Email Address:
   <input type="text" name="email" size="50"/>

   <br/>
Please send me email updates:
   <br/>

   <input type="radio" name="sendupdates" value="yes" checked="checked"/>
yes
   <br/>

   <input type="radio" name="sendupdates" value="no"/>
no
   <br/>

   <button type="submit">Submit Information   </button>
 </form>
Email Address:
Please send me email updates:
yes
no