-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 911 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API For Mercedes-Benz</title>
<link rel="stylesheet" href="styles.css">
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
</head>
<body>
<div id="header">
<h1>API For Finding Museums</h1>
<h2>Efim Shliamin</h2>
</div>
<div id="form">
<input type="text" id="address" placeholder="Enter address">
<input type="number" id="radius" placeholder="Radius in meters">
<button onclick="findMuseums()">Find Museums</button>
</div>
<div id="map" style="width: 100%; height: 600px;"></div>
<!-- Leaflet JS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="scripts.js"></script>
</body>
</html>