Hi,
Thanks for your inquiry. You can convert Html file to Doc/Docx/Pdf file format by using Aspose.Words. Please see the following code snippet.
Document doc = new Document(MyDir + “in.html”);
doc.Save(MyDir + "Html2PdfSave Out.pdf", SaveFormat.Pdf);
doc.Save(MyDir + "Html2DocSave Out.doc", SaveFormat.Doc);
Moreover, please note that Aspose.Words tries to mimic the same behavior as MS Word do. Please convert your html to Doc/Docx/Pdf by using MS Word, you will get the same output.