What does this code display?

Two input elements prompting users to type in their city and countryOne input element prompting users to enter in a dateNothing since the input elements don't have closing tagsTwo 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.