Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set this icon for the web page?

Tags:

icons

web

I would like to know what is this little icon called? And how to set the icon for that? Thanks.enter image description here

like image 673
DNB5brims Avatar asked Jun 15 '12 08:06

DNB5brims


People also ask

How do I show the icon on my website?

Log in to your website's control panel and upload the ". ico" file to your domain's root directory. Web browsers will automatically search for the Favicon. ico file in a site's root directory, and the image will appear in the address bar, favorites list and bookmarks for your website.

How do you make an icon for a website in HTML?

To add a favicon to your website, either save your favicon image to the root directory of your webserver, or create a folder in the root directory called images, and save your favicon image in this folder. A common name for a favicon image is "favicon.ico".

What is a web page icon?

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.


2 Answers

View source on SO, and you will see this link element:

<link rel="shortcut icon" href="http://cdn.sstatic.net/stackoverflow/img/favicon.ico"> 
like image 186
dan radu Avatar answered Oct 03 '22 01:10

dan radu


It's called the icon of your web-page. To include this in page use

<link rel="shortcut icon" href="favicon.ico" /> 

you insert this tag with in head tag and can be easily created using ms paint

like image 39
Ravi Jain Avatar answered Oct 02 '22 23:10

Ravi Jain