Answers for "add logo on title html"

4

how to add a title picture in html

<link rel = "icon" type = "image/png" href = "name-of-image.png">
Posted by: Guest on March-16-2020
1

how to change the logo in the title of a webpage

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <!-- This is how you add your image below --> 
  	<link rel = "icon" type = "image/png" href = "name-of-image.png">
</head>
<body>
  
</body>
</html>
Posted by: Guest on March-14-2020
1

how to add title icon in html

<link rel="icon" href="//add image link or image path" type="image/x-icon">
Posted by: Guest on November-17-2020
-1

how to add image in title bar

<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
Posted by: Guest on August-10-2020

Browse Popular Code Answers by Language