child selector example

HTML

<html>

  <head>
    <link rel="stylesheet" type="text/css" href="style.css">
  </head>

  <body>
    <div>
      <b> Learn web design in Hindi language.</b>
      <p>We are learning <b>CSS in Hindi language</b></p>
    </div>
  </body>
</html>

CSS

div>b {
  color: blue;
}