CSV to HTML Converter Convert your data
Description
CSV
A comma-separated values (CSV) file is a delimited text file that uses a comma to separate values. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator is the source of the name for this file format.
CSV Example
Name,Address,Phone
Deidre Haider,"631 Grand Avenue Glendora, CA 91740",202-555-0150
Annette Sharrock,"230 Railroad Avenue Myrtle Beach, SC 29577",202-555-0149
Ebonie Skowron,"762 Deerfield Drive Romeoville, IL 60446",202-555-0155
Devon Huynh,"573 Hudson Street Wooster, OH 44691",202-555-0196
HTML
Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
HTML Example
<table>
<thead>
<tr>
<th>Name</th>
<th>Address</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<tr>
<td>Annette Sharrock</td>
<td>230 Railroad Avenue Myrtle Beach, SC 29577</td>
<td>202-555-0149</td>
</tr>
<tr>
<td>Ebonie Skowron</td>
<td>762 Deerfield Drive Romeoville, IL 60446</td>
<td>202-555-0155</td>
</tr>
<tr>
<td>Devon Huynh</td>
<td>573 Hudson Street Wooster, OH 44691</td>
<td>202-555-0196</td>
</tr>
</tbody>
</table>