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!
Technology Inside Out!
Index ¦ Archives
¦ Atom
¦ RSS
> Tag: 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 …
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 …