Untitled

 avatar
unknown
plain_text
2 years ago
891 B
11
Indexable
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Email Signature</title>
    <style>
        .signature {
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
        }

        .signature a {
            color: #0072C6;
            text-decoration: none;
        }
        
        .signature-name {
            font-weight: bold;
        }

        .signature-job-title {
            color: #555;
        }
    </style>
</head>
<body>
    <div class="signature">
        <span class="signature-name">John Doe</span><br>
        <span class="signature-job-title">Job Title</span><br>
        Company Name<br>
        Phone: +1 123-456-7890<br>
        Email: <a href="mailto:johndoe@example.com">johndoe@example.com</a><br>
        Website: <a href="http://www.example.com">www.example.com</a>
    </div>
</body>
</html>
Editor is loading...