I am working on an angular project but trying to add an image to a table row in the html component . The image is not showing and I have tried many ways to make it work but still can't get it to show . Here is the home.component.html code :
The Images are in a folder named "images" in the project folder under the e2e folder , atop the node_modules folder
<table>
<tr>
<td>
<img src="images/Larissa.jpg" alt="investor1">
<p>"Trusted and quick profit. I use this website many times and I recommend it."</p>
</td>
<td>
<img src="images/petroski.jpg" alt="investor2">
<p>"I feel safe with the knowledge that my investment is secured and safe with Coin Rush."</p>
</td>
<td>
<img src="images/marie.jpg" alt="investor3">
<p>"Thank you i am very impressed”</p></td>
</tr>
</table>