What does this code display?

Two input elements for checking off items in a shopping listTwo input elements for choosing the dateAn input element prompting a user to type in their usernameTwo 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.