I am new to HTML Agility pack and i haven't figured out how can i parse the following block of code:
<p>
<div class='myclass1'>
<div id='idXXXX'>content1<br>content2
</div>
<div class="myclass2">
<table>
<tr>
<td align="left">content3 <b><a href="">content4</a></b></td>
<td align="right">content5 <b><a href="">content6</a></b></td>
</tr>
</table>
</div>
</div>
</p>
where XXXX is a random generated number.
I have all the code to load the HTML document.
What i want from the above code is to get content1 and content2 and in a different query content4.