user2991753
user2991753

Reputation: 1

Why href image does not shown on firefox?

i have the below code which is working in all browsers except mozilla which shows only the alt of the image... Whats wrong?

<a href="mmm.html" > <img src="img\rounded\m1.png" alt="m1" width= "10%" height= "30%"/> </a>

Upvotes: 0

Views: 42

Answers (1)

opalenzuela
opalenzuela

Reputation: 3171

Wrong characters. Try:

 <a href="mmm.html" > 
 <img src="img/rounded/m1.png" alt="m1" width= "10%" height= "30%"/> </a>

Pay attention to the path of src. You should use "/" instead of "\".

Upvotes: 1

Related Questions