Dovrebbe essere qualcosa tipo questo codice:
codice:
		Dim doc As HtmlDocument = WebBrowser1.Document

		Dim hec As HtmlElementCollection = doc.Body.GetElementsByTagName("anchor")

		For Each he As HtmlElement In hec
			Console.WriteLine(he.TagName)
		Next