Add tabindex attributes to your div elements.
Example:
<div tabindex="1">First</div>
<div tabindex="2">Second</div>
Per steveax’s comment, if you don’t want the tab order to deviate from where the element is in the page, set the tabindex to 0:
<div tabindex="0">First</div>
<div tabindex="0">Second</div>