I need to collect all languages into my collection from this site. Maybe someone knows how can I extract all of them without the column "ISO-639 code"?

I am using Jsoup for extracting HTML Tags. As far as I understand, in each tag, I need to receive the first tag. But I don't know how to get it.

Such code will return all elements (including ISO-639 code):
Elements elementObj = doc.select( "table" )
.select( "tbody" )
.select( "tr" )
.select( "td" );
First, get all
tr's. Then iterate and get firsttdfor each row: