newb question: images not showing

Discussion in 'HTML & Website Design' started by rowen77, Nov 4, 2007.

  1. #1
    This is the html. Not sure why image not showing. It is a gif file and in a folder along with html. Not sure what I'm doing wrong.

    <html>

    <head>

    <title> my first page
    </title>

    <meta http-equiv="refresh" content="10" />
    </head>

    <body>

    <img src="swirlies.gif"/>

    my website
    <IMG SRC="http://www.pageresource.com/i­ mages/next.jpg">

    <a href="http://www.w3schools.com/"
    target="_blank">Visit W3Schools!

    </body>

    </html>
     
    rowen77, Nov 4, 2007 IP
  2. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #2
    Its totally wrong..
     
    MeetHere, Nov 4, 2007 IP
  3. Shadab

    Shadab Peon

    Messages:
    376
    Likes Received:
    26
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Change this :
    <img src="swirlies.gif"/>
    
    <IMG SRC="http://www.pageresource.com/i­ mages/next.jpg">
    
    <a href="http://www.w3schools.com/" target="_blank">Visit W3Schools!
    HTML:
    To :
    <img src="swirlies.gif" />
    
    <img src="http://www.pageresource.com/images/next.jpg" />
    
    <a href="http://www.w3schools.com/" target="_blank">Visit W3Schools!</a>
    HTML:
    // Removed the space between the "i" and "m" in your source URL.
    // And closed the anchor "a" tag, which was left unclosed.

    Thanx,
    Shadab.
     
    Shadab, Nov 4, 2007 IP
    rowen77 likes this.
  4. rowen77

    rowen77 Peon

    Messages:
    264
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thankyou champ!
     
    rowen77, Nov 4, 2007 IP