Is there a way to position images side by side in PHP? For example:
image image image image.
Currently, with the following code:
print "</h2><br><a href='form.php'><img src=***.jpg width=100 height=100 /><br>
House Specifications </a><br><div>";
echo "<br>";
print "</h2><br><a href='devices.php'><img src=***.jpg width=100 height=100 /><br>Devices </a><br>";
echo "<br>";
echo "</h2><br><a href='new_info.php'><img src=***.jpg width=100 height=100 /><br>
Change Contact Info</a><br>";
echo "<br>";
echo "</h2><br><a href='events.php'><img src=***.jpgwidth=100 height=100 /><br>
Events</a><br>";
echo "<br>";
echo "<br>";
echo "<br>";
print "<br></h2><br><div align= 'center'><a href='logout.php'><img src=***.jpg width=100 height=100 /><br>Logout</a><br>";
;the output appears as follows:
image
image
image
image.
I would appreciate any assistance regarding this matter.