HTML help! Please answer!?

??(R)????

New member
I'm making a HTML thing for my mom, and I need some help.
I need to make a checklist (Where you can check many things), and a submit button at the bottom of the list. When said user presses "submit" the boxes that they have checked moves up to a text field that is shown to everybody. PLEASE HELP!
 
here is your code: <html>
<body>

<form name="input" action="html_form_action.asp" method="get">
<input type="checkbox" name="vehicle" value="Bike" /> I have a bike<br />
<input type="checkbox" name="vehicle" value="Car" /> I have a car
<br /><br />
<input type="submit" value="Submit" />
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>
 
Back
Top