- 제출된 URL:
- https://threatoff.eu/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 3개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
error | network |
|
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AS215365</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
body {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Montserrat', sans-serif;
background: -webkit-gradient(linear,right top,left top,from(#614092),to(#2443ac));
background: linear-gradient(to left,#614092 0,#2443ac 100%);
background-size: 200% 200%;
animation: gradientFlow 15s ease infinite;
}
@keyframes gradientFlow {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.content {
font-size: 12vw;
font-weight: 700;
color: white;
text-shadow:
3px 3px 0px rgba(0,0,0,0.2),
6px 6px 0px rgba(0,0,0,0.1);
letter-spacing: 0.01em;
position: relative;
z-index: 1;
}
.content::before {
content: '';
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
background: inherit;
filter: blur(20px);
opacity: 0.7;
z-index: -1;
}
</style>
</head>
<body>
<div class="content">
AS215365
</div>
</body></html>