> For the complete documentation index, see [llms.txt](https://alexgrischuk.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alexgrischuk.gitbook.io/wiki/coding/html.md).

# HTML

## Special characters

`&nbsp;` - Non-breaking space

```
Hello &nbsp; there!
```

`&times;` - HTML entity for close buttons. Alternative to the unicode ×

```javascript
// an example of the close button with React handler and Bootstrap styles
<button
  type='button'
  onClick={() => onRemove(id)}
  className='btn btn-outline-danger btn-sm'
>
  &times;
</button>
```
