I am struggling to align the input on this form. I've tried many things but none of them worked.
If anyone can help me fix this that will be great. Please find attached the code and the form
enter image description here enter image description here
[
<form action="" method="post" enctype="text/plain">
<label>First Name</label>
<input type="text" name="Your Name" value=""><br/>
<labe>Last Name</label>
<input type="text" name="Last Name" value=""><br/>
<label>Contact Number</label>
<input type="value" name="Contact Number" value=""><br/>
<label>Email address</label>
<input type="email" name="Email" value=""><br/>
<label>Date of the application</label>
<input type="date" name="Date"><br>
<label> Add your message</label><br>
<textarea name="Message" rows="10" cols="30"></textarea><br>
<label>Have you read the terms and condition of the website?</label>
<input type="checkbox" name="box"><br>
<label>Submit application</label>
<input type="submit" name="">
</form>
]3