set title image code example
Example: how to add title image in html5
<!-- HTML code to add icon in the title bar -->
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8"/>
<title>HTML icon</title>
<!-- add icon link -->
<link rel = "icon" href ="https://unsplash.com/photos/bpJ8qeyo1-w"
type = "image/x-icon">
</head>
<body>
<h1 style = "color:green;">ADDING WEBSITE ICON </h1>
<p>New icon added in the title bar</p>
</body>
</html>