I want to arrange three elements - a logo and three inscriptions. I want the logo in the left corner and three spans below each other in the right corner.
My HTML (ReactJS) code and CSS:
.spanContacts {
float: right;
}
<span>
<img src={logo} alt="Logo" width="230" height="70" />
</span>
<span className="spanContacts">
<Facebook/>
</span>
<span className="spanContacts">
E-mail: <a href="mailto:email@gmail.com">email@gmail.com</a>
</span>
<span className="spanContacts">
Телефон: <a href="tel:+telephone number"> telephone number </a>
</span>