Check out this code snippet:
<input id="homebutton" type="image" style="display:inline" src="home.png" name="saveform" class="btTxt submit ml-3" onclick="location.href='home.html'"/>
<h5 id="theatrename" style="display:inline" class="text-center mt-5">name</h5>
I successfully placed the 'homebutton' and the 'name' on the same line, but I'm having trouble aligning them. I want the 'homebutton' to be on the left and the 'name' to be centered.
I tried using class="text-center"
as shown above, but it's not giving me the desired result :/
Any ideas on how I can tackle this issue?