Introduction: In this article I am going
to explain How to create favicon icon for website in Asp.net. If you have .ico file of your logo or
picture then add the following line to the head section of the default
page and the master page of your website to add Favicon
icon for all of your pages e.g.
<head runat="server">
<title></title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
But if you don't have the .ico file then you can also generate it through the following links:
<head runat="server">
<title></title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
But if you don't have the .ico file then you can also generate it through the following links:
- http://tools.dynamicdrive.com/favicon/
- http://www.favicon.cc/
- http://www.favicongenerator.com/
and
then follow the same procedure as mentioned above.
Note: We are assuming that favicon.ico is the name of your .ico file.
0 comments:
Post a Comment