|
|
<!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> |
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
|
|
|
const html = document.documentElement; |
|
|
const body = document.body; |
|
|
|
|
|
|
|
|
html.style.height = '100%'; |
|
|
body.style.height = '100%'; |
|
|
body.style.margin = '0'; |
|
|
body.style.padding = '0'; |
|
|
|
|
|
console.log('html and body set to 100% height'); |
|
|
}); |
|
|
</script> |