Hello Everyone,
Warm Regards to All.
Could anyone help me out on how to prefix a image with the url in the address bar?
Thanks,
Arun.
Hello Everyone,
Warm Regards to All.
Could anyone help me out on how to prefix a image with the url in the address bar?
Thanks,
Arun.
As noted, the small graphic next to a site address is a favicon (an icon), not an inline page image. For a PHP site like 's the usual approach is to place a favicon file at the web root (most browsers will look for /favicon.ico) and/or add explicit link tags in the HTML head so every page advertises the icon.
A minimal and modern set of head entries:
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> Practical notes: browsers cache favicons aggressively, so changes may require a hard refresh or a filename change. Serve the correct MIME types (image/x-icon, image/png, image/svg+xml). Place the link tags in the site template head so PHP outputs them before any body content. Test with browser dev tools (Network tab) to confirm the file is requested and returns 200. For full format and markup guidance, see the MDN references on favicons and the rel="icon" link type: MDN — Favicon and .
Jump to Post— peter_budo 2,532Would you care explain what you trying to do?
Would you care explain what you trying to do?
Hello Peter,
I have a website developed in PHP. I need to put a image in front of the URL.
Check with google.com. If you see the url in the address bar, a google logo image is prefixed with the url.
I need to do the same thing i.e i would like to place a image before the url.
Thanks,
Arun.
Ehmm, that is icon not an image. This is discused on the forum often lately, you can search daniweb for it
PS: For example here http://www.daniweb.com/forums/thread119371.html
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.