Live code Example of Button, Text input, Checbox, Dropdown and Textarea





HTML Code & Result Showcase


HTML Code + Live Result

Button

<button>Click Me</button>

Text Input

<input type="text" placeholder="Your name">

Checkbox

<input type="checkbox"> I agree

Dropdown

<select>
  <option>Apple</option>
  <option>Banana</option>
</select>

Textarea

<textarea rows="4">Type here...</textarea>