Help with scrape to get value

Dear Community!

I have a Temp/Humidity Sensor which I can access through webinterface.
Currently I was able to get the temperature using Scrape integrated to my HA:

  • platform: scrape
    resource: http://192.168.1.14:86
    name: Temperature-Cellar
    select: ‘.value’
    value_template: ‘{{value[:-4] | float}}’
    unit_of_measurement: “°C”
    scan_interval: 120

So far so good, now there is a 2nd sensor connected to that device for Humidity. Below you can see the HTML Code for the sensor.
I have no clue how I could scrape the value for Humidity sensor:


I hope someone can help me with this.
Thanks a lot!