Enter CSV data and parse it into a table


CountryCapitalLanguage
FranceParisFrench
USAWashington, D.C.English
<table class='table table-striped'>
  <thead>
    <tr>
      <th>Country</th>
      <th>Capital</th>
      <th>Language</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>France</td>
      <td>Paris</td>
      <td>French</td>
    </tr>
    <tr>
      <td>USA</td>
      <td>Washington, D.C.</td>
      <td>English</td>
    </tr>
  </tbody>
</table>