how to add a logo icon in HTML
<!DOCTYPE html>
<html>
<head>
<title>This is a title</title>
<link rel = "icon" type = "image/png" href = "/icon.png">
<!-- For apple devices -->
<link rel = "apple-touch-icon" type = "image/png" href = "/icon.png"/>
</head>
</html>