Block and Inline Elements

HTML Elements are classified as Block Level and Inline Level elements on the basics of their display. Some elements display as blocks and some are inline. Block Vs Inline level Elements <p> <div> <h1> < h2>…

CSS Box model

In CSS, the term "box model" is used when talking about design and layout. The CSS box model is essentially a box that wraps around every HTML element. It consists…

Very Important topics in HTML and CSS.

HTML5 Web Storage, also known as DOM Storage is a way to preserve state on either the client or server which makes it much easier to work against the stateless nature of HTTP. It…

What is inherit property in css ?

The inherit CSS keyword causes the element to take the computed value of the property from its parent element. It can be applied to any CSS property, including the CSS shorthand…

What is HTML Semantic Elements ?

Semantic elements = elements with a meaning. A semantic element clearly describes its meaning to both the browser and the developer. <article> <aside> <details> <figcaption> <figure> <footer> <header> <main> <mark>…