<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn CSS</title>
</head>
<body>
<p> Let's learn combinators</p>
<div>General sibling selector property</div>
<p>sibling selector</p> <!-- style applied on this -->
<p>This line will get the styling</p> <!-- style applied on this -->
<p>As well as this one</p> <!-- style applied on this -->
</body>
</html>