import prohtml.*;
HtmlList htmlList;
void setup(){
//enter your url here
htmlList = new HtmlList("http://www.yoururl.com");
htmlList.printElements();
}
description
Object for parsing a valid Html Document to convert its String into
a HtmlList representing its elements. Use HtmlList if you just need
a list with all elements. The element List can contain text and html
elements. In the HtmlList all html elements are parsed as standalone
elements. This is because the tree structure of the html document gets
lost parsing it into a List. There is no element having children.