HTML Reference: Forms
Quick reference for Forms.
HTML Reference — Forms
Quick summary of Forms with syntax and example.
Syntax
<form action="/submit" method="post">...</form>
Example
<!-- Simple form -->
<form action="/submit" method="post">
<label>Name</label>
<input name="name" required>
<button type="submit">Send</button>
</form>