Is it ok to add a slash when using the img tag | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is it ok to add a slash when using the img tag

when I'm adding an img in html I have to add a / in the source section or else it's not working the tag is looking something like this : <img src="/images/example.jpg" alt="" > just want to know if it's okay or if I have some kind of problem

24th Oct 2022, 7:05 AM
חני פלולי
חני פלולי - avatar
1 Answer
+ 1
If you need to specify the path to a file that is located in another folder, then you specify the full path to the file, and putting a slash where we go to the new folder. In your example, the first slash is redundant <img src="images/example.jpg"
24th Oct 2022, 7:53 AM
Knight
Knight - avatar