images in angular 11 code example
Example 1: angular img
<img alt="xxx" class="xxx" src="https://xxx/128x128.png">
<!--
-- Property binding with [] around the property to be bound
[src]= "accountInfo.profiles[0].image"
--interpolation binding syntax
src= "{{accountInfo.profiles[0].image}}"
-->
Example 2: import images angular
<img [src]="imageSrc" [alt]="imageAlt" />
<img src="{{imageSrc}}" alt="{{imageAlt}}" />