How can we align the forms?
Like making them in the same position in vertical?
The code I have is:

The code I have is:
Code:
<html> <body> <form action="" method=""></form> <p>Nome </p> <input type=text /> <br> Password <input type=password /> <br> Email <input type=mail /> <br> Equipa <input type=equipa /> <br> <br> Submit Button <input type=submit value="Submit" /> <br> Reset Button <input type=reset value="Reset" /> </body> </html>
Comment