- Two input elements for checking off items in a shopping list
- Two input elements for choosing the date
- An input element prompting a user to type in their username
- Two input elements prompting users to type in checkbox
<html>
<body>
<p>Shopping list:</p>
<input type="checkbox">
<em>tomato sauce</em>
<br>
<input type="checkbox">
<em>pasta</em>
</body>
</html>]]>Two input elements for checking off items in a shopping list.