CSS(Cascading Style Sheets) : Understanding Cascade
Let's say you have below piece of code in your html file
<h1>Today I will learn about cascading</h1>
Now you wish to apply apply some CSS to make it pretty, so you do this in your .css file
h1{
font-family:Aerial;
color:yellow;
}
What we h...
dheerajmalik.hashnode.dev5 min read