Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Mailto and Tel Links</title> </head> <body> <h1>Contact Us</h1> <!-- Basic email link --> <p>Email: <a href="mailto:info@example.com">info@example.com</a></p> <!-- Pre-filled subject and body --> <p> <a href="mailto:support@example.com?subject=Help%20Request&body=Hello%2C%20I%20need%20help%20with..."> Contact Support </a> </p> <!-- Phone link --> <p>Call us: <a href="tel:+15559876543">+1 (555) 987-6543</a></p> <!-- Multiple recipients --> <p> <a href="mailto:a@example.com,b@example.com">Email Team</a> </p> </body> </html>
Result
Open