top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between linking to an image, a website, and an email address?

0 votes
492 views
What is the difference between linking to an image, a website, and an email address?
posted Jun 20, 2017 by Sapna Kumari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

To link an image, use < img> tags. You need specify the image in quotes using the source attribute, src in the opening tag. For hyperlinking, the anchor tag, < a> , is used and the link is specified in the href attribute. Text to be hyperlinked should be placed between the anchor tags. Little known fact: href stands for “hypertext reference.” When linking to an email, the href specification will be “mailto:send@here.com.” See examples below:

< img src=”HTMLrocks.jpg”> < /img>
< a href=”www.allindiaexams.in”> All India Exams< /a>
< a href=”admin@allindiaexams.in”> Email Me< /a>

answer Jun 21, 2017 by Anirudha Sarkar
...