xjimx
December 2, 2018, 8:40pm
1
how do you implement a favicon using an arduino as a webserver?
Wawa
December 2, 2018, 9:41pm
2
The first favicon I used was just added in base64 format to the html page.
For multiple pages it might be better to link to the .ico file.
Read the "how to post" sticky if you were expecting a better answer.
Leo..
You can find out more here:
A favicon (/ˈfæv.ɪˌkɒn/; short for favorite icon), also known as a shortcut icon, website icon, tab icon, URL icon, or bookmark icon, is a file containing one or more small icons associated with a particular website or web page. A web designer can create such an icon and upload it to a website (or web page) by several means, and graphical web browsers will then make use of it. Browsers that provide favicon support typically display a page's favicon in the browser's address bar (someti
In March...
Basically, put this in your html header:
<link rel="shortcut icon" href="http://example.com/myicon.ico">
If the url points to your Arduino, the web server also has to provide the file when asked.
Wawa
December 3, 2018, 12:46am
4