I have some word documents. I need to convert into html. Then how do I keep documents in HTML format?
You could strip out the formatting and dump them into a text editor then name the file with the extension you want. You could also try to save them in an rtf format and dump them into an html editor. Word adds some really hokey code if you use it for webpages.
you can paste the word info into notepad or other editors that support HTML format... and then save it with the .htm extension.... Regards
I do use word to spell and grammer check when writing articles then I copy to notepad2 and manually add my <p> </p> and <br /> tags. You will also need to search and replace all ' , - and " as word does not use the UTF standard characters and they will appear a checkboxes when viewed in a browser. After adding the html and body tags saving as html in notepad2 is very simple.
merely add the <br /> and <p> tags as well as the <html><head></head><body></body></html> tags of course