Add image in title bar

That method will not work. The <title> only supports plain text. You will need to create an .ico image with the filename of favicon.ico and save it into the root folder of your site (where your default page is). Alternatively, you can save the icon where ever you wish and call it whatever you want, but simply insert the following code … Read more

How to show text on image when hovering?

It’s simple. Wrap the image and the “appear on hover” description in a div with the same dimensions of the image. Then, with some CSS, order the description to appear while hovering that div. A nice fiddle: https://jsfiddle.net/govdqd8y/ EDIT: There’s another option if you don’t want to explicitly set the height of the <img> on the wrapping <div>, and … Read more

CSS selectors ul li a {…} vs ul > li > a {…}

“>” is the child selector “” is the descendant selector The difference is that a descendant can be a child of the element, or a child of a child of the element or a child of a child of a child ad inifinitum. A child element is simply one that is directly contained within the parent element: for … Read more