Use host URL path instead local folder path

Is there any option in we can load HtmlLoadOptions using host path
As below:
HtmlLoadOptions objHtmlLoadOptions = new HtmlLoadOptions("https://dnndev.me/Portals/0/styles/");

We are facing “Exception:Failed to parse URL” issue with below code
And I think it has something to do with loading these resources, so I was thinking if we can load these resources with host path URL

HtmlLoadOptions objHtmlLoadOptions = new HtmlLoadOptions("C:/dnndev.me/Portals/0/styles/");
MemoryStream objMemoryStream = new MemoryStream(Encoding.UTF8.GetBytes(html));

using (Document objPDFDocument = new Document(objMemoryStream, objHtmlLoadOptions))
{
   objPDFDocument.Save(resultMemoryStream);
}

@abyjoshi2891

Yes, you can use the host URL in order to load resources. However, the same URL should be referenced inside HTML for the used resources. In case you are facing some issues, please share your sample HTML with all content in .zip format. We will test the scenario in our environment and address it accordingly.