JSFiddle - React, Tailwind, and code Playground
HTML
<div class="footer">
<ul>
<li class="image"><img src="Images/facebook.png" />
<li class="number">This report is confidential. It is intended solely for the information and use of the client to whom it is addressed. Pinkerton does not guarantee the accuracy or completeness of outside agency records.Pinkerton’s recommendations do not guarantee against loss, workplace violence, vandalism, public violence or security incidents, but if followed will help mitigate risk. </li>
</ul>
</div>
CSS
.footer ul li {
display: inline; // in a straight line
}
.image {
float: right; // float to the right
}
.number {
float: left; // float to the left
}