Newer
Older
tiikimap / list.html
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <title>店舗一覧</title>
  <link rel="stylesheet" href="table.css">
</head>
<body>
  <h1>店舗一覧</h1>
  <table id="storeTable">
    <thead>
      <tr>
        <th>名前</th>
        <th>緯度</th>
        <th>経度</th>
        <th>説明1</th>
        <th>説明2</th>
        <th>説明3</th>
        <th>画像1</th>
        <th>画像2</th>
        <th>アイコン</th>
      </tr>
    </thead>
    <tbody>
      <!-- JSで挿入 -->
    </tbody>
  </table>

  <script src="loadCSV.js"></script>
</body>
</html>