If I have an external website how can I pull data from it. I have the following code snippet that I need to pull data from:
<div class="headlinesBox">
<div class="headline currentHeadline">
<div class="headlinesClipping">
<img src="/common/images/thumbnails/source/1320614405d.jpg" style="float: left; width: 262px; height: 236px;"/>
</div>
<div class="headlinesText">
<h3><a href="/details/news/1325223/Template-Assisted_Fabrication_for_Polymer_Solar_Cells.html" title="Template-Assisted Fabrication for Polymer Solar Cells">Template-Assisted Fabrication for Polymer Solar Cells</a></h3>
<p>
Bulk heterojunction films with nanostructured donor/acceptor interfaces have been fabricated for photovoltaic devices by means of anodic aluminum oxide (AAO) templates.
<!--
-->
</p>
</div>
</div>
<div class="headline additionalHeadline">
<div class="headlinesClipping">
<img src="/common/images/thumbnails/source/13215dec9a2.jpg" style="float: left; width: 156px; height: 236px;"/>
</div>
<div class="headlinesText">
<h3><a href="/details/news/1328303/First_Understand_Absorber_Layers_Then_Improve_Solar_Cell_Efficiency.html" title="First Understand Absorber Layers, Then Improve Solar Cell Efficiency">First Understand Absorber Layers, Then Improve Solar Cell Efficiency</a></h3>
<p>
A thorough understanding of photovoltaic materials is crucial if thin-film solar cell efficiency is to be improved.
<!--
-->
</p>
</div>
</div>
i need to get the title, image location and page location for both articles in that code snippet and put them into an array. How can I do this?
Thanks,
James