What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

IMAGES NOT LOADING

radiosmasher

New member
Working on a school project and running into a problem. I have tried everything and these images won't load. I have an image on the homepage that will load but not on this one. The images are in the folder where my html file is and still a no go. Any idea why it might be happening? Be gentle, I'm new to this.

<!DOCTYPE html>
<html>
<head><title>Custom Greeting Cards</title></head>
<<body bgcolor=#0066cc>

<center><h3 style="color:white;font-family:sans seriff;font-size:200%;">Choose a Category</h3><center>

<center><img src=“cat_BD.jpg" alt=“Birthday Cards”>
<br>
<br>
<img src=“cat_AN.jpg" alt=“Anniversary Cards”>
<br>
<br>
<img src=“cat_NJ.jpg" alt=“Nice Nose Job”>
<br>
<br>
<img src=“cat_JL.jpg" alt=“Congrats on getting out of jail”><center>


</p>
<center><a href="index.htm">Return to Home </a>
</center>
</p>
</body>
</html>
 
Working on a school project and running into a problem. I have tried everything and these images won't load. I have an image on the homepage that will load but not on this one. The images are in the folder where my html file is and still a no go. Any idea why it might be happening? Be gentle, I'm new to this.

<!DOCTYPE html>
<html>
<head><title>Custom Greeting Cards</title></head>
<<body bgcolor=#0066cc>

<center><h3 style="color:white;font-family:sans seriff;font-size:200%;">Choose a Category</h3><center>

<center><img src=“cat_BD.jpg" alt=“Birthday Cards”>
<br>
<br>
<img src=“cat_AN.jpg" alt=“Anniversary Cards”>
<br>
<br>
<img src=“cat_NJ.jpg" alt=“Nice Nose Job”>
<br>
<br>
<img src=“cat_JL.jpg" alt=“Congrats on getting out of jail”><center>


</p>
<center><a href="index.htm">Return to Home </a>
</center>
</p>
</body>
</html>

<center><a href="index.html">Return to Home </a>
</center>
 
fix the problem, be sure to check your Chrome settings and disable your antivirus. Images won't load in Chrome Sometimes this issue can appear if JavaScript is disabled in your browse And the image folder after editing your code.
 
That fixed the link. Thanks......Images still not loading.
From my experience, I believe that should have solved the problem of the images not loading but since it still happening maybe there is another security settings problem that needs to be resolved as well.
 
Back
Top