HTML Form Attributes
<!DOCTYPE html> <html> <body> <form action="/submit" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="name"> <button type="submit">Send</button> </form> </body> </html>
<!DOCTYPE html> <html> <body> <form action="/submit" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="name"> <button type="submit">Send</button> </form> </body> </html>