0

I need to get our company image before the url in asp.net website for example in google before google image appeears

2 Answers 2

2

What you need is to add a favicon in the root of your web application. Browsers will request that file and if it exist, they will show the icon before the url. In order to be compatible with most browsers, you will need to create a .ico file (this is, favicon.ico)

Here there's more information on this: http://en.wikipedia.org/wiki/Favicon

Sign up to request clarification or add additional context in comments.

Comments

1

insert the following code into the head section of your page with the respective image/icon:

<link rel="icon" 
      type="image/png" 
      href="/somewhere/myicon.png" />

In order to support cross-browsers you should create and use .ico file instead of *.png as in my exapmple. Try the free *.fav icon creator on-line service: http://www.favicon.cc/

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.