Email html code?
I need a basic email html code like adding a background image and to place some link. But I have 0 knowledge about html code, so can anyone provide me the most basic email html code for me to add a background and place some link. Thank you so much.
Public Comments
- Here you go! There should be no space after EMAIL@ADDRESS.COM in the below, but for some reason Yahoo didn't allow me to submit the answer properly when it wasn't there. <html> <head> <title>Example page with background and email link</title> </head> <body style="background-image: url(PATHTOIMAGE.jpg);"> <a href="mailto:EMAIL@ADDRESS.COM "> Email me </a> </body> </html>
- http://www.echoecho.com/htmlbasics.htm try this link it will tech every thing in Html
- to provide link <a href="path">text</a> path means any website address or any page name..like welcome.html text means any which displys on screen image disply <img src="path"> u go through www. w3school.com every thing there about html
- As answered above, the example is to place <a href="mailto:something@somewhere.com"><img ... /></a> ... Keep in mind, that if you want to avoid "spambots" that scurry around the web, looking for email addresses to fetch and use as the targets of spam, then you may want to encrypt the email address used in the "mailto"! There are several ways to do it. Google the term "spambot" to find them. One common method is to embed a javascript that creates the email address...another is to disguise the email address as a sequence of ASCII codes. Yet another is to break it up with a series of HTML comments, a la: <a href="ma<!-- what? -->ilto<-- yep -->:some<-- more -->one@<-- more -->somew -->here.<-- to come -->.com"><img ... /></a>
- You should try http://www.w3schools.com/html/default.asp it is a very good site that can help you build basic HTML pages. Good luck!
Powered by Yahoo! Answers