In this tutorial, I'll be teaching you how to add browser tab to your website. This icon to be added in your web application will allow users to easily identify your application. It is as easy as ABC so let's get into it.
<html>
<head>
<!-- other meta data -->
<link rel="icon" type="image/jpg" href="<path_to_image>">
</head>
</html>
Once you add the above link tag with the images you want to use as icon, it is done. Go to your browser and you'll see that icon displayed on your tab
Top comments (0)