You can use something like this in a jupyter cell:
%%html
<div>
<span style="float: left; width: 33%; text-align: left;">Word1</span>
<span style="float: left; width: 33%; text-align: center;">Word2</span>
</div>
EDIT: sorry missed the markdown aspect. For markdown remove the %%html magic, so just this:
<div>
<span style="float: left; width: 33%; text-align: left;">Word1</span>
<span style="float: left; width: 33%; text-align: center;">Word2</span>
</div>
This works because markdown is a subset of html.