I need help with getting a value using Scrape integration

I have a device with a web page that shows the state of various relays. There is no RESTful API or other means to get values, so I am trying to scrape the value from the page. The source looks like this:

<tr bgcolor="#F4F4F4">
  <td align="center">1</td>
  <td>Relay 1</td>
  <td><b><font color="green">ON</font></b></td>
  <td><a href="outlet?1=OFF">Switch OFF</a></td>
  <td><a href="outlet?1=CCL">Cycle</a></td>
</tr>
<tr bgcolor="#F4F4F4">
  <td align="center">2</td>
  <td>Relay 2</td>
  <td><b><font color="red">OFF</font></b></td>
  <td><a href="outlet?1=ON">Switch ON</a></td>
  <td><a href="outlet?1=CCL">Cycle</a></td>
</tr>

Notice the text says “green” when the relay is on and “red” when the relay is off. The text displayed and the hyperlinks also switch from “OFF” to “ON” depending on state. The first table row above shows a relay that is on and the second table row shows a relay that is off.

How do I configure Scrape to give me the on or off state of the relay?

Thanks.