Could someone help me with placing a menu at the bottom of an image using HTML, CSS and Bootstrap 4? I have limited CSS knowledge and need assistance.
Currently, my navbar is located below the image but not within it like this:
I am looking to achieve something like this where the menu is inside the bottom of the image:
This is the code I currently have:
<img src="car.png">
<ul>
<li>
<a> HOME</a>
</li>
<li>
<a href="#contact">NEWS</a>
</li>
<li>
<a href="#about">CONTACT</a>
</li>
</ul>