WitzCode
← All tracks
📄 HTML·Forms & Inputs

Forms & Inputs

Collect input from users.

Forms

Use <form> with <input> and <button> to take input.

<form>
  <input name="name" placeholder="Your name" />
  <button>Send</button>
</form>