Reputation: 147
I am building an angular app and in one of the components i am trying to load an image, but it is throwing a 404 not found. I guess I am not giving my path correctly. Could someone please help me with it ?
my screenshot for the component structure and html code with it
My html page with the error:
Upvotes: 0
Views: 57
Reputation: 222722
copy your images into assets folder. Angular can only statics files like images from assets folder and then
<img src="assets\img\elliot.jpg">
Upvotes: 2