- Two input elements prompting users to type in their city and country
- One input element prompting users to enter in a date
- Nothing since the input elements don't have closing tags
- Two input elements prompting users to enter in their favorite colors
<html>
<body>
<p>Where are you from?</p>
<input placeholder="city">
<br>
<input placeholder="country">
</body>
</html>]]>Two input elements prompting users to type in their city and country.