Beginner here - learning HTML in the StudioWeb course. This is in regard to Chapter 6 'HTML Forms' (specifically 6.6, 6.7 and 6.8).
(see code below) The text which reads 'User name:' and 'Password:' displays just fine in the browser. So that's good! But why doesn't that text belong in a <p> tag?
<form name="login" action="process-form.php" method="get">
User name:
<input type="text" name="username">
<br>
Password:
<input type="password" name="password">
</form>