Newer
Older
2024-Ikarashi / kappas.html
@IkarashiAito IkarashiAito on 15 May 2025 966 bytes Update kappas.html
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>庄内かっぱ寿司スタンプラリー</title>
  <link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
  <style>
    body { font-family: sans-serif; margin: 20px; }
    #map { height: 400px; margin-top: 20px; }
    .got { color: green; }
  </style>
</head>
<body>
  <h1>庄内かっぱ寿司スタンプラリー</h1>
  <p>かっぱ寿司の店舗に近づくとスタンプがもらえます!</p>
  <button id="checkBtn">スタンプをチェックする</button>
  <div id="result"></div>
  <hr />
  <h2>スタンプ帳</h2>
  <ul id="stampList"></ul>

  <div id="map"></div>

  <!-- Leaflet.js 読み込み -->
  <script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>

  <!-- 外部JavaScript読み込み -->
  <script src="kappas.js"></script>
</body>
</html>