How to Make a Checklist in HTML

How to Make a Checklist in HTML thumbnail
Sample HTML Checklist

Creating a checklist in HTML allows you to provide a way for your viewers to send feedback, take polls, present options for ordering on the Internet and perform a variety of other tasks where checking off options can be utilized. Using the "input" element in HTML, you can assign identities to each check box and create a functional checklist that provides an efficient method to gather results or information from visitors to your website.

Things You'll Need

  • Internet connection
  • HTML text editor, such as BBEdit or Dreamweaver
Show More

Instructions

    • 1

      Open a document in an HTML text editor, such as BBEdit or Dreamweaver

    • 2

      Enter the opening "paragraph" element, and give your checklist a title. For example: <p>Demo Checklist:<br />

    • 3

      Type in the "input" element and add the "type," "name" and "value" attributes. The "type" is set to "checkbox" because this display serves the function of a checklist, the "name" identifies the title of this checklist, and the "value" identifies the name of the "checkbox". For example: <input type="checkbox" name="demo" value="one" /><br />

    • 4

      Specify whether you want your "checkbox" to be "checked" when initially viewed. For example: <input type="checkbox" name="demo" value="one" checked />

    • 5

      Add multiple check boxes to your checklist by typing in additional "input" lines of HTML code. For example: <input type="checkbox" name="demo" value="one" />Step One<br /><input type="checkbox" name="demo" value="two" />Step Two<br />

    • 6

      Close your checklist with the closing "</p>" paragraph element.

    • 7

      Save your file with the ".html" extension.

    • 8

      Preview your file in a web browser by using your HTML text editor's "Preview" function. This ensures that your checklist displays correctly.

Tips & Warnings

  • Enter text before the "<input>" element to have the text precede the check box.

Related Searches:

References

Resources

  • Photo Credit Image created by Jenny TreviƱo-Blanquet

Comments

You May Also Like

  • Apartment Inspection Checklist Form

    Filling out an apartment inspection checklist form is very important for new renters because it is often the only protection they have...

  • Wedding Reception Check List

    Wedding Reception Check List. A wedding reception is supposed to be the party time, but it's actually the part of wedding planning...

  • How to Make a Checklist in Office 2007

    The software applications in Microsoft Office 2007 can be used to create various printed and electronic documents, including spreadsheets, presentations and general...

  • Washroom Checklist

    Washroom Checklist. Washroom checklists may be used to document the cleaning of a public restroom and remind maintenance staff of tasks to...

  • NFPA 101 Code Checklist

    NFPA 101 Code Checklist. The U.S. National Fire Protection Association (NFPA) 101 Code, or the Life Code, delineates building design and construction...

  • Fire Inspection Code Enforcement Checklist

    Fire inspectors work as code enforcement officials. They regulate compliance with the International Fire Code using state and local fire ordinances to...

  • Residential Building Code Checklist for Homebuyers

    Residential Building Code Checklist for Homebuyers. A residential building code checklist for homebuyers may provide guidance for evaluating the condition of key...

  • How to Create a Classroom Website Checklist

    Classroom websites are an excellent way to communicate with parents, students, administrators and colleagues. Teachers can explain their policies about homework, list...

  • Sample Bankruptcy Checklist

    Sample Bankruptcy Checklist. When it is time to get your debts in order, being organized is key to reaching daylight. If you...

  • How to Make a Checklist

    The average person can remember a list of up to seven items at a time. But sometimes the most routine tasks become...

Related Ads

Featured