Prueba con esto.
lo primero que debe estar en tu pagina son estos headers
no html, después solo diseña una tabla.
Código PHP:
header('Content-type: application/vnd.ms-excel');
header("Content-Disposition: attachment; filename=archivo.xls");
header("Pragma: no-cache");
header("Expires: 0");
teniendo esto al comiendo se abrirá el excel.
y solo haces una tabala como esta
Código HTML:
<table>
<tr>
<td>Nombre:</td><td>Juanito Perez</td>
</tr>
<tr>
<td>Pais</td><td>Shile</td>
</tr>
</table>
ahi tu verás como te resulta mas fácil con puro php o mezclado con html