Home > Net >  How to show only image on the url not other content even html?
How to show only image on the url not other content even html?

Time:12-26

I wan't to know "How to show only image on the url not other content even html?". Like see this url enter image description here

It just load an element with src=

That's what I would do.

Update your question if you want more specific answer.

CodePudding user response:

A favicon is a small file containing the one or more icons which are used to represent the website or a blog. It is also known as a tab icon, website icon, URL icon, or a bookmark icon.

How to insert the Favicon in HTML file

  1. Following are the steps for inserting the favicon.ico image in the HTML file Open the HTML file. Then use the following syntax to insert the favicon in the HTML file.

<link rel="icon" href="https://serverPath/favicon.ico" type="image/x-icon" />  

2. We have to use the above syntax in the tag of our html file. Then save the file.

3. Now. Open the HTML file in any browser. We can see the icon on the web page.
  • Related