<!DOCTYPE html>
<html>
<head>
<title>Learning jQuery</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<button class="btn-one">All Paragraphs</button>
<button class="btn-two">First Paragraphs</button>
<p>This is a first paragraph.</p>
<p>This is a second paragraph.</p>
<p>This is a third paragraph.</p>
</body>
</html>