Is there a way to align my list items horizontally without using CSS in HTML?
Additionally, I would like the li items to appear below the image at the bottom of the page.
I've experimented with different attributes and searched extensively, but nothing seems to work.
<div style="background-color:black; margin-top:0px">
<a href="http://csc2.madonna.edu/~brabahy/hw5/mercury2.html"><img src="http://csc2.madonna.edu/~brabahy/hw5/images/Mercury1.jpg" style="float:left; margin-right:10px" height="400" width="400"></a>
<p style="color:brown">Mercury is the smallest planet, and it's closest to the Sun of the eight planets in the Solar System. It has an orbital period of about 88 Earth days.</p>
</div>
<br><br><br><br>
<div>
<ul style="list-style:none">
<li style="text-align:left"><a href="http://csc2.madonna.edu/~brabahy/hw5/museum.html"><p style="color:blue">Previous room</p></a>
<li style="text-align:right"><a href="http://csc2.madonna.edu/~brabahy/hw5/venus1.html"><p style="color:blue">Next room</p></a>
</ul>
</div>