More free conversions, where you upload. The Fylane extension does the same work inside any upload form, on its own free share every day.About the extension
How to convert HTML to Word
- Drop the file.
- Nothing to choose.
- Press Convert and download.
What happens to your file
The HTML is opened by LibreOffice Writer on Fylane’s servers and saved as DOCX: headings, paragraphs, lists, links and tables become their Word equivalents; pictures are kept when they are inside the file (data URLs), and left out when they only link to a site — nothing is fetched from the web.
Scripts and styles that Word has no notion of are dropped; a page that relied on CSS for its layout comes out as a plain document.
Questions
Can I give it a URL?
Not yet — save the page from your browser (Ctrl+S, "Webpage, complete" or single file) and drop the HTML.
Related tools
Do this in code
curl -X POST https://api.fylane.dev/v1/jobs \
-H "Authorization: Bearer $FYLANE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"file_id": "<file id>",
"operation": "convert",
"options": {
"to": "docx"
}
}'The same operation, convert — Documents into another document format: Office, text and HTML to PDF by default, or by `to` into docx, odt, rtf, txt, html, xlsx, ods, csv, pptx, odp, md or epub (Markdown and EPUB through pandoc). Images to WebP. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.