0
In css when you select a html tag like body or h1 and to styling with css whole tags , like whole p tags in html file.
You must select those with tag selector.
for example in code below , I change color of all of h2 tags in my html file:
h2{
color:red;
}