Currently, I am immersing myself in HTML, CSS, and JavaScript as I gear up for my upcoming school project centered around frontend development. Here's the issue I encountered.
While attempting to insert an image into one of my HTML files, I ran into a dilemma. The image was stored on drive C: while the HTML file resided on drive E:. In my attempt, I utilized an
<image>
tag.
practice.html:
E:\Frontend-Notes\Mainpage\practice.html
10-11.jpg:
C:\Users\wangz\Pictures\WallPaper\Scenery\10-11.jpg
<image src = "C:\Users\wangz\Pictures\WallPaper\Scenery\10-11.jpg">
After ctrl+clicking the supposed absolute path, I was met with an error message in VS code as shown below. error message
I'm at a loss on how to resolve this issue.