# Form Checkbox Inputs > For cross browser consistency, `` and `` use Bootstrap's > custom checkbox input to replace the browser default checkbox input. It is built on top of > semantic and accessible markup, so it is a solid replacement for the default checkbox input. **Example 1:** Single checkbox ```html ``` **Example 2:** Multiple choice checkboxes ```html ``` Feel free to mix and match `options` prop and `` in ``. Manually placed `` inputs will appear _below_ any checkbox inputs generated by the `options` prop. To have them appear _above_ the inputs generated by `options`, place them in the named slot `first`. ## Checkbox group options array `options` can be an array of strings or objects. Available fields: - **`value`** The selected value which will be set on `v-model` - **`disabled`** Disables item for selection - **`text`** Display text, or **`html`** Display basic inline html `value` can be a string, number, or simple object. Avoid using complex types in values. If both `html` and `text` are provided, `html` will take precedence. Only basic/native HTML is supported in the `html` field (components will not work). Note that not all browsers will render inline html (i.e. ``, ``, etc.) inside `