Source source = new Source(htmlString);
Elements titles = source.getAllElements("title");
String title = titles.get(0).getTextExtractor().toString();
Elements links = source.getAllElements("a");
for (Element link : links) {
String href = link.getAttributeValue("href");
String linkText = link.getTextExtractor().toString();
System.out.println(href + " - " + linkText);
}