-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
60 lines (47 loc) · 1.23 KB
/
index.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<title>Paragliding Sites</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Include the Google Maps API script -->
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
}
#map {
height: 500px;
width: 100%;
}
@media screen and (max-width: 768px) {
/* Adjust styles for smaller screens */
#map {
height: 300px;
}
form {
display: block;
}
select, button {
width: 100%;
margin-bottom: 10px;
}
}
</style>
<?php
include 'header.html';?>
</head>
<body>
<div class="container">
<?php include 'map.php'; ?>
</div>
<?php include 'footer.html'; ?>
</body>
</html>