26 lines
698 B
HTML
26 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>🗺️ Ora</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>🗺️ Ora</h1>
|
|
<div class="search-bar">
|
|
<input type="text" id="searchInput" placeholder="Enter family name..." />
|
|
<button onclick="searchFamily()">Search</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div id="map"></div>
|
|
</main>
|
|
|
|
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/fuse.js/dist/fuse.min.js"></script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |