Here is the HTML code I created and tested:
<div class="row">
<div *ngFor="let url of urls" class="col-md-6">
<img [src]="url" alt="Image not found" height="250px" width="350px" (click)="imageClick(url)">
</div>
</div>
Please note: urls
is the array containing the URLs for images!