In the div class index, there are two additional divs without any class or id names, along with two <p>
tags. My goal is to style these two <p>
tags.
<div class="doubt">
<div>
<p>Hello world</p>
<div>
<p>Hello</p>
</div>
</div>
</div>
I am looking for a way to apply different styles to the two p tags. How can this be achieved?
Your assistance with this matter would be greatly appreciated. Thank you in advance!