https://moon.e-spaces.com/a11/

URL inviato:
https://moon.e-spaces.com/a11Reindirizzato
Report terminato:

Variabili JavaScript · 3 trovate

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Messaggi di log della console · 1 trovati

TipoCategoriaLog
errornetwork
URL
https://moon.e-spaces.com/favicon.ico
Testo
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Apollo 11 Landing Experience</title>
    <style>
        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            font-family: Arial, sans-serif;
            color: white;
            text-align: center;
            background-color: #000;
        }
        .container {
            position: relative;
            width: 100%;
            height: 100%;
            background: url('background.webp') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .logo, .ecoverse, .espaces {
            width: 200px;
            margin: 20px;
        }
        .title {
            font-size: 5em;
            margin: 20px;
            color: #0085FF;
        }
        .start-button {
            font-size: 1.4em;
            padding: 10px 15px;
            color: white;
            background-color: #000;
            border: 1px solid white;
            border-radius: 30px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .start-button:hover {
	        color: white;
            background-color: #0085FF;
            
        }
        @media (max-width: 768px) {
            .logo, .ecoverse, .espaces {
                width: 150px;
                margin: 10px;
            }
            .title {
                font-size: 1.5em;
                margin: 10px;
            }
            .start-button {
                font-size: 1em;
                padding: 10px 20px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <br> <br>  <br>  <br>  <br>  <br>   <br> <br> <br> <br>       <div class="title">Apollo 11 Landing Experience</div>
        <a href="start.html" class="start-button">START</a>
    </div>

</body></html>