473,385 Members | 1,597 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

images on URL line

How do you put an image on the URL line? Go to google and in the
navigation box you will see a Multi colored G framed by a multi colored
box. What is the html command to do this?

Thanks
Mar 3 '07 #1
4 5305
Mark Winter wrote:
How do you put an image on the URL line? Go to google and in the
navigation box you will see a Multi colored G framed by a multi colored
box. What is the html command to do this?

Thanks
These are icons, call favicons because that's what Micro$oft calls them.

You need an icon file with the extension .ico. While some browsers can
use other image files, others can only use .ico files. Note that you
cannot merely take a GIF or JPEG file and rename it as an icon file; the
internal formatting is different.

Then you need to put the following in the HEAD section of your HTML:
<link rel="shortcut icon" href="xx.ICO" type="image/x-icon">
<link rel="icon" href="xx.ICO" type="image/x-icon">
where "xx" is the name of the file. These will not only put the icon in
the address area of your browser when loading the page, but it will also
(depending on what browser you use) put the icon in your bookmarks
(favorites) file.

For my Web site, I use seven different icons, depending on the topic
presented in the Web page. See my
<http://www.rossde.com/internet/web_design.htmlfor details. Scroll
down that page about half-way.

--
David E. Ross
<http://www.rossde.com/>

Natural foods can be harmful: Look at all the
people who die of natural causes.
Mar 3 '07 #2
On Fri, 02 Mar 2007 17:51:25 -0800, "David E. Ross"
<no****@nowhere.notwrote:
>You need an icon file with the extension .ico. While some browsers can
use other image files, others can only use .ico files. Note that you
cannot merely take a GIF or JPEG file and rename it as an icon file; the
internal formatting is different.
For the OP, this page has links to a couple of icon editors:
<http://www.g4tv.com/techtvvault/features/12427/Make_Your_Icon_Appear_in_the_Browsers_Address_Bar. html>
>Then you need to put the following in the HEAD section of your HTML:
<link rel="shortcut icon" href="xx.ICO" type="image/x-icon">
<link rel="icon" href="xx.ICO" type="image/x-icon">
where "xx" is the name of the file. These will not only put the icon in
the address area of your browser when loading the page, but it will also
(depending on what browser you use) put the icon in your bookmarks
(favorites) file.
I see the icon on the address bar and in bookmarks by using just the
"shortcut icon" line. How does the "icon" link get used?
--

Charles
Mar 4 '07 #3
BobaBird wrote:
On Fri, 02 Mar 2007 17:51:25 -0800, "David E. Ross"
<no****@nowhere.notwrote:
>You need an icon file with the extension .ico. While some browsers can
use other image files, others can only use .ico files. Note that you
cannot merely take a GIF or JPEG file and rename it as an icon file; the
internal formatting is different.

For the OP, this page has links to a couple of icon editors:
<http://www.g4tv.com/techtvvault/features/12427/Make_Your_Icon_Appear_in_the_Browsers_Address_Bar. html>
>Then you need to put the following in the HEAD section of your HTML:
<link rel="shortcut icon" href="xx.ICO" type="image/x-icon">
<link rel="icon" href="xx.ICO" type="image/x-icon">
where "xx" is the name of the file. These will not only put the icon in
the address area of your browser when loading the page, but it will also
(depending on what browser you use) put the icon in your bookmarks
(favorites) file.

I see the icon on the address bar and in bookmarks by using just the
"shortcut icon" line. How does the "icon" link get used?
I'm not really sure. I was advised to use both. It works with both and
is no real bother to use them.

I might run a test. However, I have only SeaMonkey and IE installed.
Thus, the test would not reveal how Safari, Opera, Konqueror, etc
respond to having only one or the other.

--
David E. Ross
<http://www.rossde.com/>

Natural foods can be harmful: Look at all the
people who die of natural causes.
Mar 4 '07 #4
On Fri, 02 Mar 2007 18:31:30 -0700, Mark Winter
<mw*****@mwsoftware.comwrote:
>How do you put an image on the URL line? Go to google and in the
navigation box you will see a Multi colored G framed by a multi colored
box. What is the html command to do this?

Thanks
I expect you do mean what David and BobaBird mean but it is infact
possible in Mozilla and a few other browsers to store data in a URL.

You get your data, Base64 encode it and then use a 'data://' scheme
for it.
Mar 4 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: K | last post by:
I have found a script online that I want to use (I am new to PHP). It creates dynamic images based on the text that you pass it. However, no matter how I try, I can't get anything other than a...
5
by: The Plankmeister | last post by:
Ello... Is there a way to recreate the "text-align : justify" behaviour with images? (add to wish list: "image-align : justify") I have a gallery page and would like all the images to properly...
13
by: DM | last post by:
If I put three images next to each other (each within an anchor tag) they all line up horizontally as expected with no space between them. I.e., they're sitting flush up against each other. ...
10
by: Neo Geshel | last post by:
I am seeking to hand-roll my own blog in ASP.NET 2.0 and SQLExpress 2005. Why? Because I can. Because I will gain experience. The one thing that has me stumped at square one is inline images....
9
by: Wayne Smith | last post by:
I've come up against a major headache that I can't seem to find a solution for but I'm sure there must be a workaround and I would really be grateful of any help. I'm currently building a web...
2
by: mouseit101 | last post by:
Hi, I'm writing a script that would (hopefully) search google images for whatever, and then return a list of URLs for the image. Right now I have: $dom = new DomDocument(); $url =...
1
by: Cerebral Believer | last post by:
Hi folks, I am using the following code for mouse over (roll-overs) in my XHTML code. <a onmouseover="document.getElementById('sitemap').src = '../images/buttons/sitemap_mo.jpg';"...
10
by: eholz1 | last post by:
Hello Members, I am setting up a photo website. I have decided to use PHP and MySQL. I can load jpeg files into the table (medium blob, or even longtext) and get the image(s) to display without...
9
by: K. | last post by:
Witam! Napisalem taka oto funkcje: function img_Pokaz(adres,formName,hint_img) { eval('document.'+formName+'.'+hint_img+'.src = "'+adres+'"'); }
5
matheussousuke
by: matheussousuke | last post by:
Hello, I'm using tiny MCE plugin on my oscommerce and it is inserting my website URL when I use insert image function in the emails. The goal is: Make it send the email with the URL...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.