We create input elements using the empty <input>
tag.
<body>
<h4>Sign Up</h4>
<input>
</body>
The default value for type is text
which lets users enter in text they can see.
<body>
<h4>Sign Up</h4>
<input type="text" placeholder="Email">
<br>
<input type="password" placeholder="Password">
</body>