I am facing a challenge in this HTML code where the table appears next to the spans. How can I make sure that the spans appear below the table instead?
<div>
<table align="right">
<tr>
<td>smthg</td>
</tr>
<tr>
<td>smthg</td>
</tr>
<tr>
<td>smthg</td>
</tr>
</table>
</div>
<div>
<div>
<span>smthg</span>
-
<span>smthg</span>
-
<span>smthg</span>
<hr />
</div>
</div>