diff options
-rw-r--r-- | map/index.html | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/map/index.html b/map/index.html index 66972ff..92d13d7 100644 --- a/map/index.html +++ b/map/index.html @@ -2,10 +2,20 @@ <html> <head> <title>map</title> + <style type="text/css"> + html, body { + width: 100%; + height: 100%; + padding: 0; + margin: 0; + } + + iframe { + border: none; + } + </style> </head> <body> - <iframe - src="https://www.google.com/maps/d/u/0/embed?mid=1smrmLfe5lFfDy8hwBbTDaPBn8Iw" - width="100%" height="100%"></iframe> + <iframe src="https://www.google.com/maps/d/u/0/embed?mid=1smrmLfe5lFfDy8hwBbTDaPBn8Iw"></iframe> </body> </html> |