How would I get my email in put next to my label?
I made a class for the label that makes the displayed blocked. I think that’s the problem… but I want the email to appear on a different line than the first and last name…
HTML
<label for="email" class="block">Email:</label> <input type="email" name="email" id="email" placeholder="Email" required />
CSS
.block{
display: block;
margin-top: 0;
}
input[type="email"]{
display: inline;
}
