Complete the code to create an email link that opens the user's email app.
<a href="[1]">Email us</a>
http:// instead of mailto:.tel: which is for phone numbers.The mailto: protocol in the href attribute creates an email link that opens the user's email app.
Complete the code to create a phone link that allows users to call a number when clicked.
<a href="[1]">Call us</a>
call: or phone: which are not valid protocols.The tel: protocol in the href attribute creates a phone link that opens the phone dialer on devices.
Fix the error in the phone link so it works correctly on mobile devices.
<a href="[1]">Contact</a>
Using tel:+1234567890 with the plus sign and no extra characters ensures the phone link works universally on mobile devices.
Fill both blanks to create an accessible email link with a descriptive label.
<a href="[1]" aria-label="[2]">Send Email</a>
href.aria-label.The href uses mailto: for email. The aria-label describes the link for screen readers, improving accessibility.
Fill all three blanks to create a phone link with a visible number and an accessible label.
<a href="[1]" aria-label="[2]">[3]</a>
mailto: in a phone link.The href uses tel: with the full number. The aria-label describes the link for screen readers. The visible text shows the phone number clearly.