Is there a way to select all paragraph elements that come after a specific heading?
<h2 class = 'history'>History</h2>
<p>this is paragraph 1</p>
<p>this is paragraph 2</p>
<p>this is paragraph 3</p>
<h2 class = 'present'>Present</h2>
<p>I don't want to target this paragraph</p>
<p>I don't want to target this paragraph</p>
<p>I don't want to target this paragraph</p>
Using the .history + p selector allows me to target paragraph 1. How can I target the subsequent paragraphs until I reach the 'Present' H2 tag?