HTML

HTML Forms

HTML forms are used to collect information from users.

The <form> element acts as a container for form controls.

<form>

    <label>Name:</label>
    <input type="text">

    <button type="submit">
        Submit
    </button>

</form>
Interactive Sandbox
HTML/CSS/JS