If you get 404. I'm pretty sure you should have had mistake in path or the name of the file. Or you didn't put them in the path that you indicated. like ./assets/img/default.jpg.
My code from my project looks like.
<mat-card *ngFor="let respo of work.Used" fxFlexAlign="auto" style="background:#E0E0E0; height:40px; margin-left: 5px; margin-bottom: 5px; text-align: center; padding: 5px;">
<img style="height: 40px; margin:auto;" src={{respo}} alt="Photo of a Shiba Inu">
</mat-card>
I give sources for each image through json file that finally gets to this part of the code and ends up at src={{respo}}. I think you should be using {{}} too. And if you get error it should mean that you made mistake spelling. be aware the path and name are case sensitive.