JS
(a quick example)
JUST AN HTML TABLE <table id="demo"></table>
GET HTML TABLE let t = document.getElementById("demo"); FETCH CSV FILE fetch("FILE.CSV").then(res => res.text())
GENERATE HTML TABLE .then(csv => { table.innerHTML = ""; for (let row of CSV.parse(csv)) { let tr = table.insertRow(); for (let col of row) { let td = tr.insertCell(); td.innerHTML = col; } } });