Hey, Not experienced with web design at all, as you will probably know from the question I'm about to ask. How do I add an image so that it appears next to the url input field and on the tab of a page? Thanks in advance
<link rel="shortcut icon" href="image.ICO"> this is called a favicon you will have to make the image, there is plenty help if you google it
ahhh, right, thanks for that. I've seen this in the code of a few sites I looked at. And I'm assuming that the image file has to be an ICO file?
You can download an ico plugin for Photoshop. Here Simply make a canvas 16x16 Pixels. You can treat the ICO as a PNG, as you can have Transparant Background. Check out my blog post on adding an ico to your web-site.
If you use GIMP, it's simply an option you can save to. When you save as .ico, the default name may be Untitled. The name should always be changed to favicon.ico and it should normally be placed at the root of your website's server. However, I have multiple web sites on a single server, so if this is also the case for you, make sure it's in the same folder as the main HTML for the site. <link rel="shortcut icon" href="image.ICO"> should be <link rel="icon" href="favicon.ico" type="image/x-icon"> I know some browser will show the favicon without the meta tag, but not all. There are prolly some browsers who will show something called whateverimage.ico too. But the standard seems to be favicon.ico with a meta tag.