<input type="text" placeholder="Search...">
Search BoxA field for searching content.<select><option>Option 1</option><option>Option 2</option></select>
Dropdown BoxA menu with options that can be selected.<input type="radio" name="gender" value="male"> Male<br><input type="radio" name="gender" value="female"> Female
Radio ButtonsOptions where only one can be selected.<input type="checkbox" name="agree"> I agree to the terms
CheckboxesMultiple options can be selected.<input type="text" placeholder="Enter your name">
Text InputA field for entering text.<textarea placeholder="Enter your comment..."></textarea>
TextareaA multi-line text input field.<input type="password" placeholder="Enter password">
Password InputA field for entering passwords (hidden characters).<input type="date">
Date PickerAllows users to select a date from a calendar.<input type="time">
Time PickerAllows users to select a time.<input type="file">
File UploadAllows users to upload a file.<input type="range">
Range SliderA slider to select a value from a range.<input type="color">
Color PickerAllows users to pick a color.<button type="submit">Submit</button>
Submit ButtonA button to submit form data.<button type="reset">Reset</button>
Reset Button A button to …