<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>
<body>
<h2>Это заголовок</h2>
<p>Это параграф.</p>
<p>Это другой параграф.</p>
<button>Кликни меня</button>
</body>
</html>