Complete the code to add an attribute that sets the image source.
<img [1]="image.jpg" alt="A photo">
The src attribute tells the browser where to find the image file.
Complete the code to add an attribute that sets the link destination.
<a [1]="https://example.com">Visit site</a>
The href attribute defines the URL the link points to.
Fix the error by choosing the correct attribute to describe the image.
<img src="photo.jpg" [1]="A beautiful sunset">
The alt attribute provides alternative text for the image, important for accessibility.
Fill both blanks to add attributes that set the input type and placeholder text.
<input [1]="text" [2]="Enter your name">
The type attribute defines the input field type, and placeholder shows a hint inside the input box.
Fill all three blanks to create a button with a type, id, and accessible label.
<button [1]="submit" [2]="sendBtn" aria-label="[3]">Send</button>
The type attribute defines the button's action, id uniquely identifies it, and aria-label improves accessibility by describing the button.