Convert HTML table to TSV

Form for HTML converting to TSV

This form allows you convert HTML tables to TSV data, paste or upload your HTML file below:


Your result can be seen below.

Result of HTML conversion to TSV


Move to "Paste Code" for Save it

About HTML conversion to TSV

About HTML tables conversion to TSV data

The HTML to TSV Converter was created for online transform code of HTML tables into TSV(Tab Separated Values) data. It's very simple and easy way to transform and share HTML to TSV data.

How it Works?

Just paste or upload your HTML data to the textarea above and click to the button "Convert" and you will instantly get TSV data.

Example of HTML conversion to TSV

Before:
<!DOCTYPE html>
<html>
<head>
<style>h1{color:orange;text-align:center;}</style>
</head>
<body>
<h1>HTML example!</h1>
<p>This is a paragraph.</p>
<table>
<thead>
<tr>
<td>id</td>
<td>firstName</td>
<td>lastName</td>
<td>age</td>
</tr>
</thead>
<tr>
<td>1</td>
<td>Kim</td>
<td>Kardashian</td>
<td>39</td>
</tr>
<tr>
<td>2</td>
<td>Ariana</td>
<td>Grande</td>
<td>26</td>
</tr>
<tr>
<td>3</td>
<td>Cristiano</td>
<td>Ronaldo</td>
<td>35</td>
</tr>
<tr>
<td></td>
</tr>
</table>
</body>
</html>
After:
id	firstName	lastName	age
1	Kim	Kardashian	39
2	Ariana	Grande	26
3	Cristiano	Ronaldo	35
After the conversion, you can apply the TSV data to your project or use it for some other purpose.