How can you make an HTML element focusable?

Set the tabindex attribute on an element to make it focusable with tab navigation.

Example:

<div tabindex="0">Focusable Div</div>