How to insert logo with the title of a HTML page?
Are you referring to the favicon?
Upload a 16x16px ico to your site, and link it in your head
section.
<link rel="shortcut icon" href="/favicon.ico" />
There are a multitude of sites that help you convert images into .ico format too. This is just the first one I saw on Google. http://www.favicon.cc/
Yes you right and I just want to make it understandable for complete beginners.
- Create favicon.ico file you want to be shown next to your url in browsers tab. You can do that online. I used http://www.prodraw.net/favicon/generator.php it worked juts fine.
- Save generated ico file in your web site root directory /images (yourwebsite/images) under the name favicon.ico.
- Copy this tag
<link rel="shortcut icon" href="images/favicon.ico" />
and past it without any changes in between<head>
opening and</head>
closing tag. - Save changes in your html file and reload your browser.