I have a some words that I want display in the footer, I want 2 words to be left aligned and rest to be right aligned.
I have my code something like this:
<div class="footer">
MyWebsite <!--This should be left aligned-->
<!--Things below should be right aligned-->
<a href="">Contact Me</a>
<a href="">Help</a>
</div>
I want it to be displayed in a single line not to distribute in two different lines. Any way to do this by Html/css?