https://ternilab.it/

Submitted URL:
https://ternilab.it/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 5 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
acceptCookiesfunction
openImagefunction

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://ternilab.it/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="it"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>TerniLab.it - Sismografo Sperimentale</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>TerniLab.it</h1>
        <h2>Sismografo Sperimentale</h2>
        <div class="header-line"></div>
    </header>
    <div class="description">
        <p>Il nostro sismografo sperimentale è progettato per monitorare l'attività sismica in tempo reale. Tuttavia, poiché la strumentazione è situata in un'area urbana, i grafici possono essere influenzati da un elevato rumore ambientale. Le immagini dei grafici sono protette da copyright e il loro utilizzo deve essere autorizzato dal sottoscritto. Per ulteriori informazioni o richieste di autorizzazione, non esitare a contattarci.</p>
    </div>
    <div class="container">
        <img src="FTP/v.png" alt="Grafico V" onclick="openImage('FTP/v.png')">
        <img src="FTP/n.png" alt="Grafico N" onclick="openImage('FTP/n.png')">
        <img src="FTP/e.png" alt="Grafico E" onclick="openImage('FTP/e.png')">
    </div>
    <footer>
        <div class="footer-line"></div>
        <p><a href="privacy.html" style="color: white;">Privacy Policy</a> | <a href="cookies.html" style="color: white;">Cookies Law</a></p>
        <p>Disclaimer: Questo sito è a scopo informativo e sperimentale. Non ci assumiamo alcuna responsabilità per l'accuratezza dei dati presentati. I grafici sono protetti da copyright e il loro utilizzo deve essere autorizzato dal sottoscritto.</p>
    </footer>
    <div class="cookie-banner" id="cookie-banner" style="display: block;">
        Questo sito non utilizza cookies. <button onclick="acceptCookies()">Accetta</button>
    </div>
    <script>
        function acceptCookies() {
            document.getElementById('cookie-banner').style.display = 'none';
            localStorage.setItem('cookiesAccepted', 'true');
        }
        window.onload = function() {
            if (!localStorage.getItem('cookiesAccepted')) {
                document.getElementById('cookie-banner').style.display = 'block';
            }
        }

        function openImage(src) {
            var newWindow = window.open("", "_blank", "width=800,height=600");
            newWindow.document.write('<html><head><title>Immagine</title></head><body style="margin:0;display:flex;justify-content:center;align-items:center;height:100vh;background-color:#f0f0f0;"><img src="' + src + '" style="max-width:100%;max-height:100%;"><button onclick="window.close()" style="position:absolute;top:10px;right:10px;background-color:#333;color:white;border:none;padding:10px;cursor:pointer;">Chiudi</button></body></html>');
        }
    </script>











</body></html>