- Scan-ID:
- 17b0cfc6-4230-4d55-8d79-87941af8359dBeendet
- Eingereichte URL:
- https://filebank.cfd/
- Bericht beendet:
Links · 0 gefunden
Die von der Seite ausgehenden identifizierten Links
JavaScript-Variablen · 3 gefunden
Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind
Name | Typ |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Konsolenprotokoll-Meldungen · 2 gefunden
In der Web-Konsole protokollierte Meldungen
Typ | Kategorie | Protokoll |
---|---|---|
error | network |
|
error | network |
|
HTML
Der HTML-Rohtext der Seite
<!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&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>