Skip to content

Instantly share code, notes, and snippets.

@acacha
Created October 22, 2021 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acacha/f7bcea53199a5f36b4ab2d1d609325c7 to your computer and use it in GitHub Desktop.
Save acacha/f7bcea53199a5f36b4ab2d1d609325c7 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<h2>HTML Forms</h2>
<form action="https://jsonplaceholder.typicode.com/todos" method="post">
<label for="title">Title:</label><br>
<input type="text" id="title" name="title" value="Title"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment