https://filebank.cfd/

제출된 URL:
https://filebank.cfd/
보고서 완료:

링크 · 0개 결과

JavaScript 변수 · 3개 결과

이름유형
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

콘솔 로그 메시지 · 2개 결과

유형카테고리로그
errornetwork
URL
https://filebank.cfd/styles.css
텍스트
Failed to load resource: the server responded with a status of 404 ()
errornetwork
URL
https://filebank.cfd/favicon.ico
텍스트
Failed to load resource: the server responded with a status of 404 ()

HTML

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Website Under Construction</title>
    <link rel="stylesheet" href="styles.css">
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap" rel="stylesheet">
    <meta name="robots" content="noindex">

    <style>
        body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #121212;
    font-family: 'Roboto', sans-serif;
    color: #f7f7f7;
}

.container {
    text-align: center;
    background: #1e1e2f;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #b3b3cc;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ccccff;
}

a {
    color: #4da3ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #2c2c3d;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress {
    width: 50%;
    height: 100%;
    background: #4da3ff;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

    </style>
</head>
<body>
    <div class="container">
        <div class="content">
            <h1>We'll be back soon!</h1>
            <p>Our website is currently under construction. We are working hard to give you a better experience. Stay tuned!</p>
            <div class="progress-bar">
                <div class="progress"></div>
            </div>
            <p>Have a patience.</p>
        </div>
    </div>


</body></html>