How to convert word to HTML CODE?

Willis

New member
What do you mean? You want it added to a website? Do as above but don't use <font> as it's been depreciated. Use <p>*text*</p> or <span>*text*</span> and use css to apply effects and formatting.
 
What do you mean? You want it added to a website? Do as above but don't use <font> as it's been depreciated. Use <p>*text*</p> or <span>*text*</span> and use css to apply effects and formatting.
 
Hardly understand what it is that you want to do. The only "HTML code" IS a "HTML document". Also, how rare can be anything written with Word? Do you have something that is a scan copy of something rare? Then create the HTML document and display it with the code that is read by browsers.

You have some recommendations about saving the Word document as a html document. This is a sure way to screw up something that might look good in Word. Word is not a HTML editor. Notepad is better than Word for this purpose.
 
Hi there ,

Option 1 - open your document and choose from "File" menu option "Save As..." , in the opened dialog box chose "save as web page" from the "save as type" drop list.

Option 2 - write in notepad the following code:
<html>
<body>
<font>
PASTE YOUR TEXT HERE
</html>
</body>
</font>

then choose "Save as" from "File" menu , write the desired name followed by ".html"
Please make sure you choose "All files" in the "Save as type" drop down list
 
What do you mean? You want it added to a website? Do as above but don't use <font> as it's been depreciated. Use <p>*text*</p> or <span>*text*</span> and use css to apply effects and formatting.
 
Back
Top