The Checkbox

Creating 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>
         <H3>Wednesday</H3>
         <INPUT TYPE="checkbox">Make coffee<BR>
         <INPUT TYPE="checkbox">Get this page done<BR>
         <INPUT TYPE="checkbox">Publish to the web<BR>
         <INPUT TYPE="checkbox">Start on the next week<BR>
         <INPUT TYPE="checkbox">Finish making Quiz<BR>
         <INPUT TYPE="checkbox">Pray I didn't miss anything<BR>
    </FORM>

And would appear on the page as so:

    Wednesday

    Make coffee
    Get this page done
    Publish to the web
    Start on the next week
    Finish making Quiz
    Pray I didn't miss anything

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>
         <INPUT TYPE="checkbox" CHECKED>Checked checkbox? Check.
    </FORM>

It'll look just like a checked checkbox should look:

    Checked checkbox? Check.