28 lines
No EOL
854 B
HTML
28 lines
No EOL
854 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Carte Interhack Camp 2026</title>
|
|
<link rel="stylesheet" href="./js/lib/leaflet/leaflet.css">
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
<script type="module" src="./js/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<header id="main-header">
|
|
<img src="./logo.png" alt="Interhack Camp" id="logo">
|
|
</header>
|
|
|
|
<section id="map"></section>
|
|
|
|
<section id="search-section">
|
|
<form id="search-area" hidden>
|
|
<label for="search-area-query">Rechercher une zone</label>
|
|
<input type="search" name="query" id="search-area-query" />
|
|
<button>Rechercher</button>
|
|
</form>
|
|
<ul id="search-result"></ul>
|
|
</section>
|
|
|
|
</body>
|
|
</html> |