https://biuro.tech-studio.pl/

ID de exploración:
d9732793-1993-47bc-8970-caa3ab318bacFinalizado
URL enviada:
https://biuro.tech-studio.pl/
Informe finalizado:

Enlaces: 1 encontrados

Los enlaces salientes identificados en la página

EnlaceTexto
https://tech-studio.plPowrót na stronę główną

Variables JavaScript: 3 encontradas

Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual

NombreTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Mensajes de registro de la consola: 1 encontrados

Mensajes registrados en la consola web

TipoCategoríaRegistro
errornetwork
URL
https://biuro.tech-studio.pl/favicon.ico
Texto
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

El cuerpo HTML sin procesar de la página

<!DOCTYPE html><html lang="pl"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Nie znaleziono strony</title>
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #2c2f3f; /* Dark gray background */
            color: #e0e0e0; /* Light text for dark mode */
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
        }
        .container {
            padding: 30px;
            background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background for container */
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            max-width: 500px;
            width: 100%;
        }
        h1 {
            font-size: 3em;
            margin: 0 0 15px;
            color: #f1f1f1; /* Light color for heading */
        }
        p {
            font-size: 1.2em;
            margin: 0 0 20px;
            color: #b0b0b0; /* Slightly lighter text for paragraph */
        }
        .home-link {
            margin-top: 10px; /* Adjusted space above the button */
            text-decoration: none;
            background: #f1f1f1; /* Light background for button */
            color: #2c2f3f; /* Dark text color for contrast */
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
            transition: background 0.3s, color 0.3s;
        }
        .home-link:hover {
            background: #ff7e5f; /* Accent color on hover */
            color: #ffffff; /* Text turns white on hover */
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Ups! Tutaj nic nie ma.</h1>
        <p>Wygląda na to, że podałeś błędny adres lub próbujesz wejść w niewłaściwe miejsce.</p>
        <p>Sprawdź poprawność adresu lub wróć na stronę główną.</p>
        <a href="https://tech-studio.pl" class="home-link">Powrót na stronę główną</a>
    </div>


</body></html>