Practical Web Programming

Monday, October 08, 2007

How Change Your Website's Shortcut Icon

One way to personalize you website is change it's shortcut icon. And doing it is very easy. All you have to do is put the following HTML code in the <HEAD> section of every page of your website:

<link rel="shortcut icon" href="http://img.cooks.com/favicon.ico" />


Just change the <b>href</b> attribute value with the URL of the icon you intend to use. See the complete example below:

<html>
<head>
<title>Shortcut Icon</title>
<link rel="shortcut icon" href="http://img.cooks.com/favicon.ico" />
</head>
<body>
Put body text here...
</body>
</html>

0 comments:

Recent Post