On the contact page for jimgwilliams.com, how to make the email address and other listings highlight and be clickable? Thanks for all your help!
You can learn about the anchor element here
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
Creating an email link
It’s common to create links that open in the user’s email program to allow them to send a new message. This is done with a mailto: link. Here’s a simple example:
<a href="mailto:nowhere@mozilla.org">Send email to nowhere</a>
Creating a phone link
Offering phone links is helpful for users viewing web documents and laptops connected to phones.
<a href="tel:+491570156">+49 157 0156</a>
You will need to spam proof your email link, that is usually done with an email obfuscator.
Ok, thanks, this has all been very helpful, and I will be working it in to the site in the next day or two.
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.