VictorSanh
commited on
Commit
β’
d99ed69
1
Parent(s):
1e6946b
udpate
Browse files- index.html +27 -1
index.html
CHANGED
@@ -3,8 +3,34 @@
|
|
3 |
<head>
|
4 |
<meta charset="utf-8" />
|
5 |
<meta name="viewport" content="width=device-width" />
|
6 |
-
<title>
|
7 |
<link rel="stylesheet" href="style.css" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="card">
|
|
|
3 |
<head>
|
4 |
<meta charset="utf-8" />
|
5 |
<meta name="viewport" content="width=device-width" />
|
6 |
+
<title>OBELICS Interactive Map</title>
|
7 |
<link rel="stylesheet" href="style.css" />
|
8 |
+
<style>
|
9 |
+
body {
|
10 |
+
font-family: Arial, sans-serif;
|
11 |
+
background-color: #f0f0f0;
|
12 |
+
display: flex;
|
13 |
+
justify-content: center;
|
14 |
+
align-items: center;
|
15 |
+
height: 100vh;
|
16 |
+
margin: 0;
|
17 |
+
padding: 0;
|
18 |
+
color: #333;
|
19 |
+
}
|
20 |
+
.iframe-container {
|
21 |
+
border: 1px solid #ccc;
|
22 |
+
border-radius: 10px;
|
23 |
+
overflow: hidden;
|
24 |
+
width: 80%;
|
25 |
+
height: 80%;
|
26 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
27 |
+
}
|
28 |
+
iframe {
|
29 |
+
width: 100%;
|
30 |
+
height: 100%;
|
31 |
+
border: none;
|
32 |
+
}
|
33 |
+
</style>
|
34 |
</head>
|
35 |
<body>
|
36 |
<div class="card">
|