# EdGEL Favicons

The official University of Edinburgh favicon can be used on your site by copying
the files in this directory to the root of your site and including the following
in the `<head>` section of the page.
```
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
```

If you really want to place the files somewhere else, you will need to change the paths above
and in the `site.webmanifest` file to match the new location.  However, bear in mind
some clients will only recognise a favicon at `/favicon.ico` and won't look elsewhere for
it.

If the site requires authentication to access the favicon files (such as EASE authentication) remember to include
`crossorigin="use-credentials"` in all the `link` tags.
