Simple HTML Form Page

Simple HTML Form Page

<!DOCTYPE html>
<html>
<body>

<form action="/submit_page.php">
  First name:<br>
  <input type="text" name="firstname" value="YAAK">
  <br>
  Last name:<br>
  <input type="text" name="lastname" value="Developers">
  <br><br>
  <input type="submit" value="Submit">
</form> 

<p>If you click the "Submit" button, the form-data will be sent to a page called "/sumbit_page.php".</p>

</body>
</html>

Comments