- Scan-ID:
- 4a22ecff-8871-4584-b2d0-31632e10e672Beendet
- Eingereichte URL:
- https://simonemiglio.eu/
- 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 · 1 gefunden
In der Web-Konsole protokollierte Meldungen
Typ | Kategorie | Protokoll |
---|---|---|
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 Coming Soon</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1a1a2e;
color: #fff;
font-family: 'Arial', sans-serif;
text-align: center;
}
h1 {
font-size: 3rem;
margin: 0;
white-space: nowrap;
overflow: hidden;
border-right: 4px solid #fff;
display: inline-block;
animation: typing 3s steps(20, end), blink 0.6s step-end infinite;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
@keyframes blink {
50% {
border-color: transparent;
}
}
p {
margin-top: 20px;
font-size: 1.2rem;
color: #aaa;
}
</style>
</head>
<body>
<div>
<h1 id="dynamic-text">Website is coming...</h1>
<p>Stay tuned! We're building something amazing.</p>
</div>
</body></html>