If you take a closer look on the payload of the site you can see that there isnt any value between the span tags:
<span id="sunset"></span>
So there is nothing to extract from.
There is a JSON in the payload containing the informations. If youre intrested how to extract elements here is an example how to do it with regex:
[
{
"id": "77d66f26.fc3e5",
"type": "inject",
"z": "4a74382c.bbd2d8",
"name": "",
"topic": "",
"payload": "",
"payloadType": "date",
"repeat": "",
"crontab": "",
"once": true,
"onceDelay": "2",
"x": 150,
"y": 280,
"wires": [
[
"63688402.1085ec"
]
]
},
{
"id": "45f4b138.b57d7",
"type": "http request",
"z": "4a74382c.bbd2d8",
"name": "",
"method": "GET",
"ret": "txt",
"url": "https://soltider.dk/loc/6100-haderslev-danmark#",
"tls": "",
"x": 510,
"y": 280,
"wires": [
[
"ceee31fd.9de24",
"3497b59c.3513ca"
]
]
},
{
"id": "2dafc463.2fd38c",
"type": "debug",
"z": "4a74382c.bbd2d8",
"name": "",
"active": true,
"tosidebar": true,
"console": false,
"tostatus": false,
"complete": "true",
"x": 950,
"y": 280,
"wires": []
},
{
"id": "63688402.1085ec",
"type": "change",
"z": "4a74382c.bbd2d8",
"name": "",
"rules": [
{
"t": "set",
"p": "headers",
"pt": "msg",
"to": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0\"}",
"tot": "json"
}
],
"action": "",
"property": "",
"from": "",
"to": "",
"reg": false,
"x": 330,
"y": 280,
"wires": [
[
"45f4b138.b57d7"
]
]
},
{
"id": "ceee31fd.9de24",
"type": "change",
"z": "4a74382c.bbd2d8",
"name": "",
"rules": [
{
"t": "set",
"p": "payload",
"pt": "msg",
"to": "$replace(msg.payload, /([\\s\\S]+?<pre>\\s)([\\s\\S]+?)(<\\/pre>[\\s\\S]+)/, \"$2\")\t\t",
"tot": "jsonata"
}
],
"action": "",
"property": "",
"from": "",
"to": "",
"reg": false,
"x": 680,
"y": 280,
"wires": [
[
"dd68cea1.b403e"
]
]
},
{
"id": "dd68cea1.b403e",
"type": "json",
"z": "4a74382c.bbd2d8",
"name": "",
"property": "payload",
"action": "",
"pretty": false,
"x": 830,
"y": 280,
"wires": [
[
"2dafc463.2fd38c"
]
]
}
]
Or you just go the easy way and extract the data from their api:
https://soltider.dk/api?lat=55.663426&lng=12.542953