| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Responsive Iframe Example</title> |
| <style> |
| body { |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| min-height: 100vh; |
| margin: 0; |
| background: #f5f5f5; |
| padding: 10px; |
| } |
| .iframe-container { |
| position: relative; |
| width: 100%; |
| max-width: 700px; |
| padding-top: 61.5%; |
| box-shadow: 0 4px 12px rgba(0,0,0,0.2); |
| border-radius: 10px; |
| overflow: hidden; |
| } |
| .iframe-container iframe { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| border: 0; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="iframe-container"> |
| <iframe |
| src="https://vikingf1le.us.to/f/CopUxgSPv4" |
| allowfullscreen> |
| </iframe> |
| </div> |
| </body> |
| </html> |