public static void Main()
var url = "https://parahumans.wordpress.com/2011/06/14/gestation-1-2/";
using (HttpClient client = new HttpClient())
using (HttpResponseMessage response = client.GetAsync(url).Result)
using (HttpContent content = response.Content)
string result = content.ReadAsStringAsync().Result;
var htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(result);
Console.WriteLine(htmlDocument.DocumentNode.InnerText);