Have you ever heard of OG-TAGS?

Posted on Thu 30 November 2017 in Web Development • Tagged with HTML

Ever noticed how Facebook shows an excerpt from a website with its image, or how a tweet with just a URL changes into a short window to the actual website? It's because of og-tags. Let's understand more about it!

Open Graph Protocol Logo

Overview of OG Tags

The Open Graph Protocol is what works …


Continue reading

Z-Index in CSS

Posted on Sun 19 January 2014 in CSS • Tagged with CSS, HTML

z-index

What is Z-Index ?

Z-Index is the property of CSS which is used to order the elements behind and in front in the form of stack. You can consider this a virtual stack where the higher value of z-index is placed infront and the lower value of z index is placed …


Continue reading

How to add custom CSS in HTML

Posted on Thu 12 December 2013 in CSS • Tagged with CSS, HTML

I have already given the introduction to CSS and advantages.Now, there are few ways to use your custom CSS in your site/blog/wordpress.

  • Using style tag with HTML elements.
  • Using Style element inside HTML page
  • Linking external CSS file in your pages
  • Importing CSS file inside another CSS …

Continue reading

CSS - Introduction and How it works

Posted on Wed 11 December 2013 in CSS • Tagged with CSS, HTML

CSS stands for Cascading Style Sheet which is used to style HTML elements.
While loading any webpage browser simply create DOM of requested web page and renders the HTML. CSS is basically a better way of managing HTML attributes

style

of any element.

To add style we simply use

Style …


Continue reading