A favicon (short for "favorite icon") is a small icon that appears in the browser tab, bookmark list, and other browser UI. It helps users identify your website visually.
Favicons improve branding and user experience. They help users easily recognize and switch to your website among multiple open tabs.
You add a favicon using the <link>
tag inside the <head>
section of your HTML document.
<link rel="icon" type="image/x-icon" href="favicon.ico">
<!DOCTYPE html> <html> <head> <title>Favicon Example</title> <link rel="icon" type="image/x-icon" href="favicon.ico"> </head> <body> <h1>Check the browser tab for favicon</h1> </body> </html>
A favicon gives your website a visual identity in the browser tab. Adding one is a small but important step in professional web design.
Help others discover Technorank Learning by sharing your honest experience.
Your support inspires us to keep building!