Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Two images side by side.

Status
Not open for further replies.

tijerina

Vendor
Mar 4, 2003
132
US
I am trying to place two images in the middle of my webpage using HTML, not frontpage.

How do I put two images one on the left and one on the right side and under the two images, I want to put some text.

Sample:


Image1GoesHere Image2GoesHere

text text




This is what I have sofar, am I offbase here?

<p align=left>
<img src = "../images/tools.bmp" ALT="Services">
</p>
<p align=left>
<a href=" Services</a>
</p>
<td align=right>
<p>
<img src = "../images/smallphone.gif" ALT="Support" align="right">
</p>
</td>
<p align=right>
<a href=" Support</a>
</p>
 
Is this what you're trying to accomplish?

Code:
<table width="100%" border="0">
<tr><td align="center">
<img src = "../images/tools.bmp" ALT="Services"></td><td align="center"><img src = "../images/smallphone.gif" ALT="Support"></td></tr>
<tr><td align="center"><a href="[URL unfurl="true"]https://www.mypage.com/contact/services.php">[/URL] Services</a></td><td align="center"><a href="[URL unfurl="true"]http://www.mypage.com/contact/phone.php">Phone[/URL] Support</a></td></tr>
</table>

There's always a better way. The fun is trying to find it!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top