Complete the code to bind the src property of the img tag to the imageUrl variable.
<img [1]="imageUrl" alt="Image">
In Angular, property binding uses square brackets around the property name, like [src].
Complete the code to bind the disabled property of the button to the isDisabled variable.
<button [1]="isDisabled">Click me</button>
Use square brackets to bind the disabled property to the variable isDisabled.
Fix the error in the code to correctly bind the value property of the input to the userName variable.
<input [1]="userName">
Property binding requires square brackets around the property name, so use [value].
Fill both blanks to bind the title property to pageTitle and the alt property to imageAlt.
<img [1]="pageTitle" [2]="imageAlt">
Use square brackets for property binding on both title and alt properties.
Fill all three blanks to bind href to linkUrl, target to linkTarget, and rel to linkRel.
<a [1]="linkUrl" [2]="linkTarget" [3]="linkRel">Link</a>
All three attributes use property binding with square brackets.