File size: 792 Bytes
251096d a821e9a 251096d a821e9a 251096d 234ea60 |
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 |
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Fablia</title>
</head>
<body>
<iframe src="https://fablia.fr" width="100%" height="100%" style="border:none;"></iframe>
</body>
</html>
<script>
// Ensure html and body are 100% height
document.addEventListener('DOMContentLoaded', function() {
// Get the html and body elements
const html = document.documentElement;
const body = document.body;
// Set height to 100% for both html and body
html.style.height = '100%';
body.style.height = '100%';
body.style.margin = '0'; // Remove default margin
body.style.padding = '0'; // Remove default padding
console.log('html and body set to 100% height');
});
</script> |