- ID de l'analyse :
- 17b0cfc6-4230-4d55-8d79-87941af8359dTerminée
- URL soumise :
- https://filebank.cfd/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 3 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Messages de journal de console : 2 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
error | network |
|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!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>