views:

65

answers:

5

How can i place my icon before url

A: 

Edit: updated due to first comment that this is not an answer.

Your question is rather unclear, but I presume you mean you want your website to display a picture in a browser just before the actual url text. This is called a favicon.

Wikipedia explains it well.

Tobiasopdenbrouw
This is not an answer and should have been posted as a comment to the question.
Oded
One might equally say that this wasn't a question either, and that I at least tried to help.
Tobiasopdenbrouw
+1  A: 

This icon is called Favicon you can get more help on this at following location.

http://www.thesitewizard.com/archive/favicon.shtml

Prakash Kalakoti
+1  A: 

Assuming you want a favicon, here is a wonderful link about how to create one.

CSharpCorner Favicon Tutorial

espais
A: 

use code below to put image.png before the url

<link rel="shortcut icon" href="image.png" /> 
Maysam
+1  A: 

If you want to display an icon before/after all links (not a favicon as others have assumed (fair assumtion however) ) then do it in CSS.

http://www.hunlock.com/blogs/Attach_icons_to_anything_with_CSS

bgs264