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>
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.