Patchouli's Computatrunomicon

Search IconIcon to open search

forms

Last updated May 31, 2022.

2022-05-25

1
2
3
<form action="example.com/path" method="post">

</form>
1
2
3
<form action="example.com/path" method="post">
  <input type="text">
</form>
1
2
3
4
<form action="example.com/path" method="post">
  <label for="firstName">First Name:</label>
  <input type="text" id="firstName">
</form>
1
2
<label for="first_name">First Name:</label>
<input type="text" id="first_name" placeholder="Bob...">
1
2
<label for="first_name">First Name:</label>
<input type="text" id="first_name" name="first_name">

# Sources

https://www.theodinproject.com/lessons/node-path-intermediate-html-and-css-form-basics


Interactive Graph