Newer
Older
systemDsample / index(失敗).html
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CSV チェックマーク</title>
</head>
<body>
  <h1>CSV データ チェックマーク</h1>
  <input type="file" id="csvFileInput" accept=".csv" />
  <table id="csvTable" border="1">
    <thead>
      <tr>
        <th>データ</th>
        <th>チェックマーク</th>
      </tr>
    </thead>
    <tbody></tbody>
  </table>
  <script src="script.js"></script>
</body>
</html>