Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 6: Navigating with HTML Links and Structuring Data with Tables!

Instruction

Example: Contact Section with Email and Phone Links

Here’s an example that includes both email and phone links in a contact section:

<h2>Contact Us</h2>
<ul>
  <li><a href="mailto:support@murach.com">Send us an email</a></li>
  <li>
    <a href="mailto:support@murach.com?cc=ben@murach.com&subject=Web%20Inquiry">
      Send us an email with a copy to Ben
    </a>
  </li>
  <li><a href="tel:555-555-5555">Call us</a></li>
</ul>...