How to change browser icon html5

How to change browser icon html5 like picture below?

You talk about favicon?

To change favicon add following into project.xml:

<?xml version="1.0" encoding="utf-8"?>
<project>
    ...
    <icon path="assets/icon.png" />
    ...
</project>

Where assets/icon.png is path to icon

2 Likes