Psudo class and elements

by Krishna Ananthi

HTML

<p>
  hi
</p>
<p>
  hi
</p>
<p>
  hi
</p>

<h1>
  hello
</h1>
<h1>
  hello
</h1>
<h1>
  hello
</h1>

CSS

p::after {
  content: "I am injected"
}

h1:hover::after{
  content:"I am pseudo element:: and psuedo class is : "
}