Today Someone give me a word file and ask me to put the content on the website. And my god , 20 pages if I only copy and paste . It will take me serveral hour to finish it .So I am looking for a Word to HTML Converter Online .But to my disappointment , I can not find any free converters .Even I find some free ,but it has the output limitation .

Finally ,I find a free Word to HTML Converter

<html>

<head>

<title>Word2Html</title>

<script language="javascript">

function convert2html(){

    html.value = word.innerHTML;

}

</script>

</head>

<body>

<p>Please paste your word content here
<div style="border:1 outset #ffffff; overflow:auto;width:80%;height:50%" 
id="word" contenteditable></div>

<input type="button" value="Conver to HTML" onclick="convert2html();"><br>

<textarea cols="80" rows="10" id="html"></textarea><br>

Your Browser must be IE Explorer 5.5 or Higher

</body></html>