Home

Chapter 6: Form

Topics we are going to learn in this page:

  1. form tag
  2. input tag
  3. label tag
  4. button tag
  5. textarea tag
  6. select tag
  7. option tag
  8. fieldset tag
  9. legend tag
  10. action attribute
  11. method attribute
  12. for attribute
  13. required attribute
  14. name attribute
  15. placeholder attribute
  16. type attribute
  17. value attribute

Explantion of the topics:

  1. form tag

  2. input tag

  3. label tag

  4. button tag

    The <button> HTML element is an interactive element activated by a user with a mouse, keyboard, finger, voice command, or other assistive technology. Once activated, it then performs an action, such as submitting a form or opening a dialog.

  5. textarea tag

  6. select tag

  7. input type checkbox

  8. input type radio

  9. Example:

    Code:

                    <form action="somewhere" method="get">
                    <fieldset >
                        <legend>An example form:</legend>
                
                        <!-- Text input -->
                        <div>
                            <label for="Name">Name:</label>
                            <input type="text" id="Name" name="name" placeholder="Full Name" required >
                        </div>
                        
                        <!-- Radio buttons -->
                        <div>
                            <p>Gender:</p>
                            <input type="radio" id="male" name="gender" value="m">
                            <label for="male">Male</label>
                            <input type="radio" id="female" name="gender" value="f">
                            <label for="female">Female</label>
                            <input type="radio" id="other" name="gender" value="o">   
                            <label for="other">Other</label>
                        </div>
                
                        <!-- Selector with options -->
                        <div>
                            <br>
                            <label for="country">Country:</label>
                            <select id="country" name="nation">
                                <option value="IN">India</option>
                                <option value="US">United States</option>
                                <option value="CA">Canada</option>
                                <option value="UK">United Kingdom</option>
                                <option value="AU">Australia</option>
                            </select>
                        </div>
                
                        <!-- Textarea -->
                        <div>
                            <br>
                            <label for="message">Feedback message:</label><br>
                            <textarea id="message" name="feedback" rows="5" cols="30"></textarea>
                        </div>
                
                
                        <!-- Checkboxes -->
                        <div>
                            <p>Hobbies:</p>
                            <input type="checkbox" id="reading" name="hobbies" value="reading">
                            <label for="reading">Reading</label>
                            <input type="checkbox" id="traveling" name="hobbies" value="traveling">
                            <label for="traveling">Traveling</label>
                            <input type="checkbox" id="cooking" name="hobbies" value="cooking">
                            <label for="cooking">Cooking</label>
                            <br><br>
                        </div>
    
                        <!-- Submit button -->
                        <div>
                            <button type="submit">Submit</button>
                        </div>
    
                    </fieldset>
                    </form>
                

    Output:

    An example form:

    Gender:




    Hobbies: