0

the last opened pages got a shortcut in chrome and safari on smartphone. but my page not.

how do I set up the picture for this?

for example ikea and bild works

favicon is set

<link rel="shortcut icon" href="include/designs/wirte/favicon.ico">
<link rel="shortcut icon" href="include/designs/design/images/favicon.png" type="image/x-icon">
<link rel="icon" href="include/designs/design/images/favicon.png" type="image/x-icon">

enter image description here

Felix
  • 5,452
  • 12
  • 68
  • 163

2 Answers2

1

iOS Safari uses the Apple Touch icon for this purpose and also bookmarks and home screen icons. You definitely want to declare this one.

Android Chrome is similar, it reuses the icon it already takes for bookmarks and home screen icons:

As an alternative to the classic, manual creation, you can use this online favicon generator. It allows you to design your icons platform per platform and creates the icons and HTML you need to get the job done. Full disclosure: I'm the author of this site.

philippe_b
  • 38,730
  • 7
  • 57
  • 59
0

Add this code with your favicon.

 <link rel="SHORTCUT ICON" HREF="/favicon.png">
Anna Jeanine
  • 3,975
  • 10
  • 40
  • 74