-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.php
40 lines (37 loc) · 1.08 KB
/
map.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
<?php include("./header.php") ?>
<!DOCTYPE html>
<html>
<style>
body {
overflow-x: hidden;
background-image: url("/assets/fall-street-background.webp");
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
margin:0;
}
.container {
display: flex;
justify-content: space-between;
padding: 13px 5%;
}
</style>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
</head>
<body>
<div class="title-shit">
<h1>Find Everything You Need!</h1>
</div>
<div style="margin:3vh">
<div style="width:100%; height:100%; border: 0; text-align: center;">
<iframe src="https://storage.googleapis.com/maps-solutions-wgnv1xey12/neighborhood-discovery/l7z6/neighborhood-discovery.html"
loading="lazy" style="width: 1000px; height: 530px; border: 0;">
</iframe>
</div>
</div>
</body>
</html>
<?php include("./footer.php") ?>