What is the correct syntax for the method attribute in an HTML form?
The method attribute in an HTML form specifies the HTTP method used when submitting the form data to the server. The two most commonly used methods are "GET" and "POST". The correct syntax for the method attribute is as follows: method="GET" or method="POST". ```html <form action="submit.php" method="POST"> <!-- form fields go here --> </form> ```