import prohtml.*;
HtmlList htmlList;
void setup(){
size(100,100);
//enter your url here
htmlList = new HtmlList("www.http://yoururl.com");
for (int i = 0;i<htmlList.pageList.size();i++){
println(htmlList.pageList.get(i));
}
}
description
PageList is a field containing a complete list of the parsed
document's elements. It contains every element, excluding comments and scripts.