Convert text to HTML

About Convert text to HTML tool

Convert text to an HTML format that is displayable in a Web or other HTML-readable format. This can include formatting such as bold and italics as well as bulleted and numbered lists, plus centered text.


An example of when to use text to HTML is if you want to convert a Word of .rtf document into HTML code.  You can also convert text from an email or .txt or similar file into HTML that you can then place on a web page.  The tool takes blocks of text and places HTML tags in the text. Called formatting tags, these HTML tags can include formatting text, for example, to bold or italic. In addition to bold and italic, other code can include font color, font size, font style, text color, tables, images, colors, links, comments, background, music and video codes, forms.


Examples of what codes look like are <P> and <table>.  Angle brackets show the tags, and typically the tags come in pairs such a <p> and </p> to show paragraph markers.


HTML is short for HyperText Markup Language.  HTML is the main language for the web.  The browser does not show the HTML tags.


Here are some HTML tags.


<h1>Largest Heading</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Smallest Heading</h6>

<p>This is a paragraph.</p>
<br> (line break)
<hr> (horizontal rule)
<!-- This is a comment -->

<b>Bold text</b>
<code>Computer code</code>
<em>Emphasized text</em>
<i>Italic text</i>
<kbd>Keyboard input</kbd> 
<pre>Preformatted text</pre>
<small>Smaller text</small>
<strong>Important text</strong>