1<!-- HTML code to add icon in the title bar -->
2<!DOCTYPE html>
3<html>
4 <head>
5 <meta charset = "utf-8"/>
6 <title>HTML icon</title>
7 <!-- add icon link -->
8 <link rel = "icon" href ="https://unsplash.com/photos/bpJ8qeyo1-w"
9 type = "image/x-icon">
10 </head>
11
12 <body>
13 <h1 style = "color:green;">ADDING WEBSITE ICON </h1>
14 <p>New icon added in the title bar</p>
15 </body>
16</html>