https://noel-enfants.famille-debienne.fr/index.php

Submitted URL:
https://noel-enfants.famille-debienne.fr/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 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

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://noel-enfants.famille-debienne.fr/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="fr"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Enfants</title>
    <style>
        /* Styles de la barre de chargement */
        .loader-container {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            /* Ajout de l'image de fond */
            background-image: url('christmas-background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .loader {
            width: 50%;
            background-color: #ddd;
            border-radius: 25px;
        }

        .loader-bar {
            width: 0;
            height: 30px;
            background-color: #4caf50;
            border-radius: 25px;
            text-align: center;
            line-height: 30px;
            color: white;
        }
    </style>
</head>
<body>

<div class="loader-container">
    <div class="loader">
        <div class="loader-bar" id="loader-bar" style="width: 24%;">24%</div>
    </div>
</div>

<script>
    // Fonction pour simuler la barre de chargement
    let width = 0;
    const loaderBar = document.getElementById("loader-bar");

    function load() {
        if (width >= 100) {
            // Redirection vers index.php après le chargement
            window.location.href = "index.php";
        } else {
            width++;
            loaderBar.style.width = width + "%";
            loaderBar.innerHTML = width + "%";
            setTimeout(load, 30); // Simule la progression
        }
    }

    // Démarre la barre de chargement au chargement de la page
    window.onload = load;
</script>



</body></html>