-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.53 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes" />
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<script src="js/modernizr.js"></script> <!-- Modernizr -->
<title>US disturbance area percentage in landscape</title>
<style>
/* Ensure the iframe and all parent elements fill the entire viewport */
html, body {
margin: 0;
padding: 0;
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
div {
flex-grow: 1;
}
iframe {
width: 100%;
height: 100%;
border: none; /* Remove borders */
}
/* Styling for the text at the top */
.header-text {
text-align: center;
padding: 10px;
background-color: #f0f0f0;
width: 100%;
}
</style>
</head>
<body>
<div>
<iframe src="https://www.arcgis.com/apps/mapviewer/index.html?panel=gallery&suggestField=true&layers=9367c0ca958c4ae284f221c3fda5ab58" allowfullscreen>
iFrames are not supported on this page, please visit https://www.arcgis.com/apps/mapviewer/index.html?panel=gallery&suggestField=true&layers=9367c0ca958c4ae284f221c3fda5ab58
</iframe></div>
</body>
</html>