Is it possible to convert HTML with external CSS to DOCX ?
<?php
require_once 'phpdocx-trial-pro-5.5/classes/CreateDocx.inc';
$docx = new CreateDocx();
$html='http://www.csszengarden.com/215/';
$docx->embedHTML($html, array('isFile' => true));
$docx->createDocx('csszengarden-215');
?>
The external CSS would be http://www.csszengarden.com/215/215.css?v=8may2013
Thanks