Strip HTML tags

About Strip HTML tags tool

Remove tags from text. This can include tags to use bold (“b”) or italic. It can also include tags such as headings or other formatting such as a bulleted list. Following are some HTML tags. Here is an example of text that is bold, italic, underlined, and with a strike out. All of these tags would go away, and plain text would remain.


<p><strong>This is bold.</strong> <em>This is italic.</em> <span style="text-decoration: underline;">This is underlined.</span> <span style="text-decoration: line-through;">This is a strike out.</span></p> This is bold. This is italic. This is underlined. This is a strike out.


<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>

<abbr> (abbreviation)
<address> (contact information)
<bdo> (text direction)
<blockquote> (a section quoted from another source)
<cite> (title of a work)
<del> (deleted text)
<ins> (inserted text)
<sub> (subscripted text)
<sup> (superscripted text)
Ordinary link: <a href="http://www.example.com/">Link-text goes here</a>
Image-link: <a href="http://www.example.com/"><img src="URL" alt="Alternate Text"></a>
Mailto link: <a href="mailto:webmaster@example.com">Send e-mail</a> Bookmark:
<a id="tips">Tips Section</a>
<a href="#tips">Jump to the Tips Section</a>

<img src="URL" alt="Alternate Text" height="42" width="42">
<ul>
  <li>Item</li>
  <li>Item</li>
</ul>
<ol>
  <li>First item</li>
  <li>Second item</li>
</ol>
<dl>
  <dt>Item 1</dt>
    <dd>Describe item 1</dd>
  <dt>Item 2</dt>
    <dd>Describe item 2</dd>
</dl>

<table border="1">
  <tr>
    <th>table header</th>
    <th>table header</th>
  </tr>
  <tr>
    <td>table data</td>
    <td>table data</td>
  </tr>
</table>