How do i get a site logo in html

How do i get a site logo

1 Like

Check https://github.com/launchaco/logo_builder maybe?

Hi @Pencil,

When you say “site logo”, do you mean this:

image

The little icon that goes with a site, called a favicon?

The simplest way to set this is by adding a favicon.ico file in the root of your site, but there are longer guides online like this: The 2020 Guide to FavIcons for Nearly Everyone and Every Browser (emergeinteractive.com)

Or maybe this:

…The Glitch project icon, which you can set in the Glitch editor by clicking the project name then clicking the logo:

image

Hope this helps!

2 Likes

<link rel="icon" href="IMAGE ADDRESS HERE" type="image" sizes="16x16">

Put this code, and put the image address where it says “IMAGE ADDRESS HERE”. Put it in the section of your code.

2 Likes

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.