Offline Notepad View raw

Shared snapshot

Share.ID

<html>
<head>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
        body {
            background-color: #000;
        }
        .container {
            margin-top: 50px;
        }
        iframe {
            width: 100%;
            height: 10px;
            border: none;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            transition: height .5s ease;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1 class="text-center mb-4 text-light">Password:=</h1>
        <div class="row justify-content-center">
            <div class="col-lg-10">
                <iframe src="https://Offlinenotepad.com/ntag213"></iframe>
                <iframe src="https://www.literallyanything.io/"></iframe>
                <iframe src="https://www.literallyanything.io/gallery"></iframe>
            </div>
        </div>
    </div>
    <script>
        const iframes = document.querySelectorAll('iframe');
        
        iframes.forEach(iframe => {
            iframe.addEventListener('mouseenter', function() {
                this.style.height = '500px';
            });
        });

        document.addEventListener('click', function(event) {
            if (!event.target.closest('iframe')) {
                iframes.forEach(iframe => iframe.style.height = '10px');
            }
        });
    </script>
</body>
</html>