can someone please advise how best to change whatever that symbol is on websites I create?
Asked
Active
Viewed 1,063 times
2 Answers
1
This is called a favicon !
You can just use this in your page's <head>
:
<link rel="icon"
type="image/png"
href="http://example.com/myicon.png" />
(You just have to replace the url and image/png
by image/jpg
if necessary)

Misfits09
- 176
- 1
- 9
0
What you are looking for is called "Favicon"
A favicon (favorite icon) is a tiny icon included along with a website, which is displayed in places like the browser's address bar, page tabs and bookmarks menu.
Read more about it here https://developer.mozilla.org/en-US/docs/Glossary/Favicon
You will have to create different icons in different sizes for multiple devices. See this page for generating icons https://favicon.io/ and the HTML you will need

caramba
- 21,963
- 19
- 86
- 127