Question 19
Consider the code snippet given below.
<!DOCTYPE html><html> <head> <style> p ~ p { background-color: green; } </style> </head> <body> <h2>This is my Heading</h2> <p>Paragraph 1</p> <p>Paragraph 2</p> <p>Paragraph 3</p> <div> <p>Paragraph 4</p> </div> <p>Paragraph 5</p> <p>Paragraph 6</p> </body></html>Which of the following is the correct output of the above HTML code?