manugm_1987 0 Junior Poster in Training

Hello everyone ,

I am new to this xslt, can anyone please help me out solving my problem. Its very urgent, as i am doing my final year engeneering project. And my project is based on this xslt

My problem is to convert html created by MSWORD to clean html using xslt transformation.
Draw a table in MSWORD and enter few things inside table,now save the file as .html, when we view the code of this we get an xml code which is not well formed ..... here is the well formed xml wat i hav done ..... The problem is i hav to convert this to an clean html
using xslt ..... Can any one please help me out ,please its very urgent...

test.xml

<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
<meta name="ProgId" content="Word.Document"></meta>
<meta name="Generator" content="Microsoft Word 10"></meta>
<meta name="Originator" content="Microsoft Word 10"></meta>
<link rel="File-List" href="table_files/filelist.xml"></link>
<title>Hello hi </title>
</head>

<body lang="EN-US" style='tab-interval:.5in'>

<div class="Section1">

<table class="MsoTableGrid" border="1" cellspacing="0" cellpadding="0"
style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
.5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
<tr style='mso-yfti-irow:0'>
<td width="295" valign="top" style='width:221.4pt;border:solid windowtext 1.0pt;
mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
<p class="MsoNormal">Hello hi </p>
</td>
<td width="295" valign="top" style='width:221.4pt;border:solid windowtext 1.0pt;
border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
<p class="MsoNormal">How r u </p>
</td>
</tr>
<tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
<td width="295" valign="top" style='width:221.4pt;border:solid windowtext 1.0pt;
border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class="MsoNormal">Example </p>
</td>
<td width="295" valign="top" style='width:221.4pt;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
<p class="MsoNormal">Just do it </p>
</td>
</tr>
</table>

<p class="MsoNormal"><o:p>&amp;nbsp;</o:p></p>

</div>

</body>

</html>

Thanking You
Manu