HTML Forms

PHOTO EMBED

Sat Apr 22 2023 20:13:59 GMT+0000 (Coordinated Universal Time)

Saved by @Anzelmo

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
  </head>
  <body>
    <h2>The method Attribute With the Post Method</h2>
    <form action="/form/submit" target="_blank" method="POST">
      Name:<br>
      <input type="text" name="name" value="Tom">
      <br>
      Surname:<br>
      <input type="text" name="surname" value="Brown">
      <br>
      Age:<br>
      <input type="number" name="age" value="21">
      <br><br>
      <input type="submit" value="Submit">
    </form>
  </body>
</html>
content_copyCOPY

https://www.w3docs.com/learn-html/html-forms.html