Hello! I'm currently working on creating a footer for my website. I've written this code and everything seems to be functioning correctly, except for the fact that the second row is positioned under the first row and taking up half of the bottom of the screen. I need the second row to align to the right of the first row. Can anyone offer some assistance? Thank you! View image description here
<div class="footer">
<div class="container>
<div class="row">
<div class="col-md-6">
<h4>Links</h4>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="sign-up.html">Sign Up</a></li>
<li><a href="log-in.html">Log In</a></li>
<li><a href="help.html">Help</a></li>
</div>
<div class="col-md-6">
</div>
</div>
<div class="row">
<div class="col-md-6">
<h4>Social Media</h4>
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Youtube</a></li>
<li><a href="#">Instagram</a></li>
</div>
</div>
</div>
</div>