0

I am developing webpages using html 5. I've got the following code in one of my pages

<iframe src="http://www.youtube.com/embed/MY_VIDEO_DIR" height="320" width="480">   
</iframe>

Then, the icon beside the page title became YouTube. How would I remove this auto-generated icon?

Thx.

mishik
  • 9,973
  • 9
  • 45
  • 67

1 Answers1

0

To change icon for your website you can use the following:-

<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel="icon" href="favicon.ico" type="image/x-icon"> 
abhinsit
  • 3,214
  • 4
  • 21
  • 26