I want to align a logo , header fields and a sign in button in one line using flex. Logo should have flex-start , header fields should be center and the button should be flex-end . How do I achieve this.Thanks in advance.
<div class="header">
<div class="header_topics">
<ul style="display:flex;justify-content:center;">
<li ><a href= "#" > <span>Home</span></a></li>
<li ><a href="#" ><span> About</span></a></li>
<li><a href="#" ><span>Contact</span></a></li>
</ul>
</div>
<div class="signinx" style="display:flex;justify-content:flex-end">
<div class="signin" > <a href="#">Signin <i class="fas fa-user"></i></a></div>
</div>
</div>