0

I want to upload a favicon for my HTML/CSS website, I used:

<link rel="icon" href="favicon.ico">

But it doesn't work. Here are my project folders:

Ghazi Aldeeb
    Resources
        Images
            favicon.ico
    Scripts
        CSS
            stylesheet.css
        HTML
            index.html
Tomerikoo
  • 18,379
  • 16
  • 47
  • 61
galdeeb
  • 5
  • 3

2 Answers2

0

You have to specify all the directory. In your case (if the html file is into the folder "Ghazi Aldeeb"),

<link rel="icon" href="/Ghazi Aldeeb/Resources/Images/favicon.ico">
0

Try this:

 <link rel="icon" href="../Images/favicon.ico">
cmereoiu
  • 69
  • 3