var htmlarraylist = HTMLWorker.ParseToList(new StringReader(htmlText), styles);
document.Open();
BaseFont Vn_Helvetica = BaseFont.CreateFont(@\"C
You can use a font in iTextSharp using
FontFactory.RegisterDirectories();
Font fontNormal = new Font(FontFactory.GetFont("Arial", 12, Font.NORMAL))
You should be able to set the font on a paragraph using the following:
foreach (var t in htmlarraylist)
{
if(t is Paragraph)
{
((Paragraph)t).Font = fontNormal;
}
document.Add((IElement)t);
}