Forms
Hello everyone! I do not understand why "Username", "Password" and "E-mail" appear in the right, at the end of the fields. I wanted them to appear at the beginning of each field. Can you please explain to me where I was wrong? <!DOCTYPE html> <html> <head> <title>First page</title> </head> <body> <form> <fieldset> <legend>Personal information</legend> <input type="text" name="username"/>Username<br/> <input type="password" name="password"/>Password<br/> <input type="text" name="e-mail"/>E-mail<br/> <input type="radio" name="gender" value="male"/>Male<br/> <input type="radio" name="gender" value="female"/>Female<br/> <input type="submit" value="Submit"/><br/> </fieldset> </form> </body> </html>