I used descendant selector and I declared the style process in the head section
In the HTML head:
<style>
p h1 {
color: blue;
background-color: red;
}
</style>
In the HTML body:
<p>
<h1>
I am Anik Islam
</h1>
</p>
It didn't show blue colored letters and red colored background, it showed the default instead. What am I missing here?