Answers for "image in angular html"

0

how to render images in angulae

use the url as below
<img src="assets/img.jpg" alt="">
Posted by: Guest on February-06-2021
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}}" 
-->
Posted by: Guest on June-19-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language