If you are using IE7 or above, or using a multi-tab browser, you will definitely find the personality icon in front of the tab. How did you do this?
I haven't quite understood it. By chance, my colleague told me several ways and posted them to share with you
1.
Just put an ICO icon into the root directory of your website and name it. It should be 16×16 256-color icon.
But for low-version IE,
Just add the following tags between the <head> and </head> tags of the web page.
<link rel="icon" href="/" type="image/x-icon" />
<link rel="shortcut icon" href="/" type="image/x-icon" />
2.
No code required
Just put the ICO icon to the root directory of your website and name it. For example, the path is/
IE will automatically search for this thing
/
/favicon/ This website can transform ordinary pictures into ICO types
If you want to display it in a browser below IE5, add the following code between the HTML source file "<head></head>":
<link rel="Shortcut Icon" href="Image Address">
<link rel="Shortcut Icon" href=""> Change to your own icon in front of the IE address bar
<link rel="Bookmark" href=""> You can display your icon in your favorites
IE6 does not display icons by default, and icons will only be displayed when adding favorites.
==============
In addition, the site written in VS2005 has always been fine. Because of the recent appearance of IE8, I found that the disabled button was still displayed as it was. I thought it was a bug in IE8, but I searched for it for a long time.
I found that the button of MS can still be disabled, so it is not necessarily a browser bug.
After searching several times, it turned out that the W3C document referenced version was too low
Get it done after upgrading.
That's what it said:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
I haven't quite understood it. By chance, my colleague told me several ways and posted them to share with you
1.
Just put an ICO icon into the root directory of your website and name it. It should be 16×16 256-color icon.
But for low-version IE,
Just add the following tags between the <head> and </head> tags of the web page.
Copy the codeThe code is as follows:
<link rel="icon" href="/" type="image/x-icon" />
<link rel="shortcut icon" href="/" type="image/x-icon" />
2.
No code required
Just put the ICO icon to the root directory of your website and name it. For example, the path is/
IE will automatically search for this thing
/
/favicon/ This website can transform ordinary pictures into ICO types
If you want to display it in a browser below IE5, add the following code between the HTML source file "<head></head>":
<link rel="Shortcut Icon" href="Image Address">
<link rel="Shortcut Icon" href=""> Change to your own icon in front of the IE address bar
<link rel="Bookmark" href=""> You can display your icon in your favorites
IE6 does not display icons by default, and icons will only be displayed when adding favorites.
==============
In addition, the site written in VS2005 has always been fine. Because of the recent appearance of IE8, I found that the disabled button was still displayed as it was. I thought it was a bug in IE8, but I searched for it for a long time.
I found that the button of MS can still be disabled, so it is not necessarily a browser bug.
After searching several times, it turned out that the W3C document referenced version was too low
Get it done after upgrading.
That's what it said:
Copy the codeThe code is as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">