Forum Moderators: open
<object data="data:image/svg+xml,***SVG DATA HERE***" type="image/svg+xml" width="100" height="15">
<!-- secondary backup text file if SVG isn't supported -->
<object data="data:text/plain;charset=iso-8859-1,example%40example.com"
type="text/plain" width="100" height="15">
</object> <!-- end secondary file -->
</object>
You never know, it might work one day! On the other hand, it may just be a load of rubbish ;)
It would be great if there was a tag that hid the email address and just showed it to browsers as an image.
And how would this work for blind people?
Well, maybe alt="user at domain dot com" would work for blind users.
I generally build mailto links out of javascript to avoid bots grabbing them.
<script type="text/javascript">
function SendMail() {
// This is to prevent automatic systems from finding the email address
Address = "mai" + "lto:" + " user" + "%40" + "domain.com";
document.location.href = Address;
}
</script>
And the link is done thusly:
<a href="javascript:SendMail();">Send Us an Email</a>
A font made entirely with CSS [stunicholls.myby.co.uk]
It's completely crazy, but very clever stuff!