<!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>
<h1>Hello World</h1>
<p>This paragraph is outside the parent element of ul and it will not be highlighted.</p>
<div class="container">
<p>This paragraph is inside the parent element of ul and it will be highlighted.</p>
<ul>
<li>Item One</li>
<li>Item Two</li>
</ul>
</div>
</body>
</html>