I want to extract specific values from a website that shows me progress within a game, to show them in a vb.net application for easier access. The HTML code I would like to get the data from is:
<div id="freemodeRank" class="page-section clearfix">
<div class="rankHex right-grad bronze">
<h3 style="font-size:54px">225</h3>
<p style="text-align:center;"></p>
</div>
<div class="rankXP">
<div class="clearfix">
<h3 class="left">5.6M<span> RP</span></h3>
</div>
<div class="rankBar">
<h4>Play Time: 58d 4h 23m</h4>
The data I would like to get from this code are:
"225", "5.6M" and "Play Time: 58d 4h 23m"
Any help would be great.