add image as icon html

Solutions on MaxInterview for add image as icon html by the best coders in the world

showing results for - "add image as icon html"
Fátima
03 Jun 2016
1<!DOCTYPE html>
2<html lang="en">
3<head>
4    <title>Document</title>
5    <!--
6        make sure your icon (proposed image)is in the same folder with your html file,
7       and change "favicon.ico" into your image name 
8    -->
9    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
10</head>
11<body>
12    
13</body>
14</html>