Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML button tag</title> </head> <body> <form action="/examples/html/action.php" method="post"> <p> First name: <input type="text" name="first-name"> <button type="submit" value="Submit">Submit</button> <button type="reset" value="Reset">Reset</button> </p> </form> </body> </html>