I am Using Ubuntu 9.10, Firefox 3.6.8. In the code shown below when I change the 'favicon\ico' link from images/favicon.ico(shows little fish) to show
the 'images/mybank.ico' the browser will not recognize the change and show the new image. I can show 'images/mybank.ico' fine within the <img tag below.
I save the file, I refresh the page, I stop firefox and start it again and it will not change. I did notice, however, that the original favicon which shows up just ahead of the <title 'Practice Boxes' does flicker on the first or second tries to refresh.
Appreciate any help.
Thanks in advance, RP
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Practice Boxes</title>
<link rel="stylesheet" type="text/css" href="SanJoaquin.css" media="screen"/>
<link rel="shortcut icon" href="images/mybank.ico" type="favicon\ico" />
</head>
<body>
<img src="images/mybank.ico" alt="Accounting" />
<div id="main">
<h1> San Joaquin Valley Town Hall </h1>
<p> Welcome to San Joaquin Valley Town Hall.
We have some amazing speakers in store for you this season</p>
</div>
</body>
</html>