|
My web site is www.geocities.com/joebacchin. I've insert before the <head> tag of my index page the following link:
<link rel="shortcut icon" href="http://www.geocities.com/joebacchi...
and I uploaded the favicon.ico to the root of my site. It's not working...Could, please, anybody help me? Tks
Does Geocities allow favicon for free hosting web pages?
you have it close - but try coding it direct to the favicon like this (if the favicon.ico is in the root folder with the index.html file
<link rel="shortcut icon" href="favicon.ico" >
and place between the head tags not before - like this
<head>
<link rel="shortcut icon" href="favicon.ico" >
</head>
obviously you will have alot more links in there - like
<title>
<meta
etc
eg:
<html>
<head>
<LINK TYPE="text/css" REL="stylesheet" HREF="style.css">
<title>Your Site</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<meta http-equiv="Content-Language" content="en">
<meta name="ROBOTS" content="home, follow">
<meta name="revisit-after" content="1 day">
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
|