|
The CheckboxCreating a checkbox is a piece of cake. All you have to do is follow the standard <FORM> tag with <INPUT TYPE="checkbox">, and, as usual, end it all with </FORM>. Remember to follow each checkbox with some sort of text (or image) identifying what it's for, and insert a line break or paragraph tag between choices.... The HTML for my to-do list would look something like this: <FORM> And would appear on the page as so: If you want the box to appear with a check already in it, just include the attribute CHECKED within the <INPUT> tag, like this: <FORM> It'll look just like a checked checkbox should look: |