Table of Contents

Web Development Lesson 2 - Lists

Checklists

Setup

Input Checkbox

      <h2>Checklist</h2>
      <ul>
        <li>100g flour</li>
        <li>2 eggs</li>
        <li>300ml milk</li>
      </ul>
        <li><input type="checkbox" name="flour">100g flour</li>
        <li><input type="checkbox" name="eggs">2 eggs</li>
        <li><input type="checkbox" name="milk">300ml milk</li>
ul {
  list-style-type: none;
}

Next: Menus