how to create a web page containing three image tags with different pictures

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lillee0705
    New Member
    • Oct 2012
    • 1

    how to create a web page containing three image tags with different pictures

    If you know how to do so please help as soon as possible.
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    This is not a code writing service. Show us what you've got and we can help you figure it out.

    But here's a hint. If you know how to create one, then you can create three. Just copy the image element and change the source of the picture.

    Comment

    • Niheel
      Recognized Expert Moderator Top Contributor
      • Jul 2005
      • 2432

      #3
      use the img tag to show images in an html document

      for example:
      Code:
      <img src="http://domain.com/images/image.gif" border="0" width="20px" height="20px">
      <img src="http://domain.com/images/image2.gif" border="0" width="20px" height="20px">
      <img src="http://domain.com/images/image3.gif" border="0" width="20px" height="20px">
      Change the height and width in the image tags to the values of the images height and width
      niheel @ bytes

      Comment

      Working...