<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn CSS</title>
</head>
<body>
<p>Let's learn adjacent selector</p>
<div>
<p> we see no style effect here.</p>
</div>
<p>this is styled as it comes right after a div tag</p>
<p>Also comes after a div tag but will not get styled</p>
</body>
</html>