What does this code display?
One
input
element next to another
One
input
element on top of another
<html>
<body>
<p>What's your name?</p>
<input placeholder="First name">
<input placeholder="Last name">
</body>
</html>]]>
One
input
element next to another.