<label for="input-text">Text Input:</label>
<input type="text" id="input-text">
<label for="input-password">Password Input:</label>
<input type="password" id="input-password">
<label for="input-checkbox">Checkbox:</label>
<input type="checkbox" id="input-checkbox">
<label for="input-radio">Radio Button:</label>
<input type="radio" id="input-radio">
<label for="input-color">Color Picker:</label>
<input type="color" id="input-color">
<label for="input-range">Range Slider:</label>
<input type="range" id="input-range">
<label for="input-date">Date Picker:</label>
<input type="date" id="input-date">
<label for="input-time">Time Picker:</label>
<input type="time" id="input-time">
<label for="input-select">Dropdown Select:</label>
<select id="input-select">
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
<option value="option3">Option 3</option>
</select>
<label for="input-textarea">Textarea:</label>
<textarea id="input-textarea"></textarea>
<button type="button">Button</button>
<label for="input-file">File Input:</label>
<input type="file" id="input-file">