Based on my title attribute I need to change color of my cell inside table
Consider below example whenever my title value says WHO - I need to change color of my <p> element to RED
<!DOCTYPE html>
<html>
    <body>
        <p><abbr title="WHO">WHO</abbr> was founded in    1948.</p>
        <p><abbr title="WHO">World People</abbr> was founded in    1948.</p>
        <p title="Free Web tutorials">W3Schools.com</p>
    </body>
</html>
 
     
     
     
    