Neon Glow Iframe - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Neon Glow Iframe</title> <style> body { font-family: 'Arial', sans-serif; background: #000; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .iframe-container { position: relative; width: 80%; height: 70%; border: 5px solid #0ff; box-shadow: 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff; border-radius: 15px; overflow: hidden; } .iframe-title { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); background: #0ff; color: #000; padding: 10px 20px; border-radius: 10px; font-size: 1.5em; font-weight: bold; } iframe { width: 100%; height: 100%; border: none; border-radius: 15px; } </style> </head> <body> <div class="iframe-container"> <div class="iframe-title">Neon Glow Iframe</div> <iframe src="https://www.example.com" title="Example Iframe"></iframe> </div> </body> </html>