Please send questions to st10@humboldt.edu .
<html>

<!-- try_radio1.html
     (adapted from HTML tutorial at 
     http://www.w3schools.com/html/html_forms.asp)

     adapted by: Sharon Tuttle
     last modified: 11-09-06
-->

<head>
    <title> Playing with radio buttons
</head>

<body>
    <h3> Playing with checkboxes  </h3>
    <h4>      (adapted from HTML tutorial at 
     http://www.w3schools.com/html/html_forms.asp) </h4>

    <form method="post" 
          action="http://redwood.humboldt.edu/~st10/form_echo.php">

          I have the following: <br> 
          <input type="checkbox" name="bike"> Bike    

          <input type="checkbox" checked="checked" name="car"> Car 
                  

          <input type="checkbox" name="skateboard" checked="checked"> 
          Skateboard <br>

        <br><br>
        <input type="submit" value="submit">
    </form>

</body>
</html>