|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Worldwide Disaster Information System</title> |
|
<style> |
|
|
|
body { |
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
|
margin: 0; |
|
padding: 0; |
|
background-color: #add8e6; |
|
color: #333; |
|
min-height: 100vh; |
|
box-sizing: border-box; |
|
} |
|
|
|
|
|
.container { |
|
max-width: 100vw; |
|
margin: 0 auto; |
|
padding: 0; |
|
text-align: center; |
|
} |
|
|
|
|
|
h2 { |
|
color: #00796b; |
|
margin: 10px 0; |
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.1); |
|
background-color: #e0f2f1; |
|
padding: 10px 0; |
|
} |
|
|
|
|
|
iframe { |
|
display: block; |
|
width: calc(100vw - 10px); |
|
height: 92vh; |
|
margin: 0 auto; |
|
border: 2px solid #00796b; |
|
box-shadow: 0 6px 12px rgba(0,0,0,0.25); |
|
border-radius: 8px; |
|
overflow: hidden; |
|
background-color: #fff; |
|
box-sizing: border-box; |
|
} |
|
|
|
|
|
.fallback-message { |
|
margin-top: 20px; |
|
font-style: italic; |
|
color: #555; |
|
} |
|
|
|
.fallback-message a { |
|
color: #00796b; |
|
text-decoration: none; |
|
} |
|
|
|
.fallback-message a:hover { |
|
text-decoration: underline; |
|
} |
|
|
|
</style> |
|
</head> |
|
<body> |
|
|
|
<div class="container"> |
|
<h2>Worldwide Disaster Information System</h2> |
|
|
|
|
|
<iframe |
|
src="https://worldcrisismap.com/" |
|
title="World Crisis Map"> |
|
|
|
<p class="fallback-message"> |
|
Your browser does not support iframes. Please visit |
|
<a href="https://worldcrisismap.com/" target="_blank">World Crisis Map</a> directly. |
|
</p> |
|
</iframe> |
|
</div> |
|
|
|
</body> |
|
</html> |
|
|