How to add an image in the title bar using html?

pro_2911
<DOCTYPE! HTML>
<html>
<head>
    <title>Login</title>
    <link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
    some text

</body>
</html>

This is the code I wrote to add an image in the new tab bar of the browser. But this is not working. I am also using wamp server, if wamp might be causing problems.

David-SkyMesh

According to wikipedia, the most browser-compatible incantation is:

<link rel="shortcut icon" href="favicon.ico" />

After that, you just need to worry about whether your browser is actually downloading the icon. What do the server logs say? Have you checked your browsers network debugging console?

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to add widgets to title bar using tkinter?

From Dev

iOS - add image and text in title of Navigation bar

From Dev

iOS - add image and text in title of Navigation bar

From Dev

How to add an image title in XSL?

From Dev

How do I add an image to a progress bar in HTML/CSS?

From Dev

How align a image and avoid text below in title using HTML CSS

From Dev

How to add Tool bar title at the center of layout

From Dev

how to add search bar under the navigation title

From Dev

How to change the title bar icon using winapi

From Dev

sencha touch html in tabBar not showing when I add title bar

From Dev

How to add image in Highcharts Title and subtitle

From Dev

How to add an image and a label to UINavigationBar as a title?

From Dev

How i can use image in navigation bar title in swift ios

From Dev

How to set an image title in the navigation bar of an iOS app

From Dev

How do I change title for navigation bar for image picker page?

From Dev

Qt how do you add to the Windows Title bar?

From Dev

How to add menu and settings option to the customized title bar of android?

From Dev

How to add a dropdown menu to the Navigation Bar Title in iOS

From Dev

How to add extra buttons to jQuery dialog title bar

From Dev

How to add two buttons to the UINavigation bar title view

From Dev

Qt how do you add to the Windows Title bar?

From Dev

How to add extra buttons to jQuery dialog title bar

From Dev

How can I add a tab control on to the window title bar

From Dev

How To Add album selector view on Navigation bar's title item

From Dev

Using bash, how to extract specific image's URL and title text from html file?

From Dev

UI Navigation Bar Image Title

From Dev

Setting an image as Navigation Bar title

From Dev

Setting an image as the title bar background

From Dev

How to add title attribute in drop down using {html_options} in smarty 3.1

Related Related

  1. 1

    How to add widgets to title bar using tkinter?

  2. 2

    iOS - add image and text in title of Navigation bar

  3. 3

    iOS - add image and text in title of Navigation bar

  4. 4

    How to add an image title in XSL?

  5. 5

    How do I add an image to a progress bar in HTML/CSS?

  6. 6

    How align a image and avoid text below in title using HTML CSS

  7. 7

    How to add Tool bar title at the center of layout

  8. 8

    how to add search bar under the navigation title

  9. 9

    How to change the title bar icon using winapi

  10. 10

    sencha touch html in tabBar not showing when I add title bar

  11. 11

    How to add image in Highcharts Title and subtitle

  12. 12

    How to add an image and a label to UINavigationBar as a title?

  13. 13

    How i can use image in navigation bar title in swift ios

  14. 14

    How to set an image title in the navigation bar of an iOS app

  15. 15

    How do I change title for navigation bar for image picker page?

  16. 16

    Qt how do you add to the Windows Title bar?

  17. 17

    How to add menu and settings option to the customized title bar of android?

  18. 18

    How to add a dropdown menu to the Navigation Bar Title in iOS

  19. 19

    How to add extra buttons to jQuery dialog title bar

  20. 20

    How to add two buttons to the UINavigation bar title view

  21. 21

    Qt how do you add to the Windows Title bar?

  22. 22

    How to add extra buttons to jQuery dialog title bar

  23. 23

    How can I add a tab control on to the window title bar

  24. 24

    How To Add album selector view on Navigation bar's title item

  25. 25

    Using bash, how to extract specific image's URL and title text from html file?

  26. 26

    UI Navigation Bar Image Title

  27. 27

    Setting an image as Navigation Bar title

  28. 28

    Setting an image as the title bar background

  29. 29

    How to add title attribute in drop down using {html_options} in smarty 3.1

HotTag

Archive