Html Agility pack | Learn how to use HtmlAgilityPack with tutorial & example[
^]
might help you.
var url = "http://radioglobus.dk/netradio/?autoplay=true%22";
var web = new HtmlWeb();
var doc = web.Load(url);
var nodes = doc.DocumentNode.SelectNodes("//span");
var node = nodes.FirstOrDefault(x => x.Attributes.Any(a => a.Name == "class" && a.Value == "nowPlayingTitle"));
if (node != null)
{
Console.WriteLine(node.InnerHtml);
}
"node.InnerHtml" is the song name.
This example is in C# but you could easily rewrite it in VB Net.