Posts

Showing posts with the label HTML

HTML: Forms

  HTML Forms Form is used to collect user input. For example, this form will send information to example.html as a POST request < form action = "/example.html" method = "POST" > </ form > I. Form elements <form>  defines an HTML form for user input <input>  defines an input control <textarea>  defines a multiline input control (text area) <label>  defines a label for an element <button>  defines a clickable button <select>  defines a drop-down list <option>  defines an option in a drop-down list II. Input types < input type = "button" /> < input type = "checkbox" /> < input type = "color" /> < input type = "date" /> < input type = "datetime-local" /> < input type = "email" /> < input type = "file" /> < input type = "hidden" /> < input type = "image...