04-10-2023, 07:17 AM
Hi, Alexandre
Thank you very much for your detailed explanation.
But there is one thing that I still have doubts about specifying the path of the tag that is displayed about the image. Let me give you two examples:
1. img tag :
2. image in css style tag
Both of these may be declared within html or css or js files.
for the right way and coverage in all cases
How should I specify these paths?
Thank you
Thank you very much for your detailed explanation.
But there is one thing that I still have doubts about specifying the path of the tag that is displayed about the image. Let me give you two examples:
1. img tag :
Code:
<img src="../images/img1.png" />2. image in css style tag
Code:
<style>
.myBg {
background: url(../images/background/bg1.jpg) no-repeat center;
}
</style>Both of these may be declared within html or css or js files.
for the right way and coverage in all cases
How should I specify these paths?
Thank you

