What does this code display?

A list of three links on different lines and an image on a different lineA list of four links on different linesFour links on the same lineThree links on the same line<html> <body> <h3>Moonlanding Facts</h3> <ul> <li> <a href="/index.html">Home</a> </li> <li> <a href="/moon.html">Moon</a> </li> <li> <a href="/about.html">About</a> </li> </ul> <img src="https://mimo.app/i/moon.png"> <p>Welcome to the Moonlanding Facts Homepage!</p> </body> </html>]]>

A list of three links on different lines and an image on a different line.