Kirk Broadhurst
Kirk Broadhurst

Reputation: 28698

Can I provide the icon to use for an iPhone homescreen shortcut to my web application?

I have a web application that will be used on iPhones, and want to provide the icon to be shown when added as a homescreen shortcut.

How can I do this?

Upvotes: 1

Views: 274

Answers (1)

user529758
user529758

Reputation:

Use this HTML code in the <head> section of your start page:

<link rel="apple-touch-icon" href="my_icon.png" />

Upvotes: 3

Related Questions