https://error.africa/

제출된 URL:
https://error.africa/
보고서 완료:

링크 · 0개 결과

페이지에서 식별된 외부 링크

JavaScript 변수 · 3개 결과

페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다

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

웹 콘솔에 기록된 메시지

HTML

페이지의 원시 HTML 본문

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>🏴‍☠️ Avast Ye Matey! Rate Limit Be Here! 🏴‍☠️</title>
    <style>
      body {
        font-family: "Comic Sans MS", cursive, sans-serif;
        background-color: pink;
        text-align: center;
        margin: 0;
        overflow: hidden;
      }

      .sliding-text-container {
        position: relative;
        overflow: hidden;
        height: 50px;
        border: 5px solid #00ff00;
        padding: 10px;
        background-color: purple;
      }

      .sliding-text {
        position: absolute;
        white-space: nowrap;
        animation: slide 5s linear infinite alternate;
        color: #ff00ff;
        font-size: 2em;
        width: 100%;
      }

      @keyframes slide {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(0%);
        }
      }

      h1 {
        font-size: 3em;
        margin-top: 10%;
        color: #0000ff;
        text-shadow: 5px 5px 5px #ffd700;
      }

      p {
        font-size: 2em;
        color: #ffa07a;
        transform: scaleX(1.1) scaleY(1.2) rotate(5deg);
        display: inline-block;
        background-color: #ffd700;
        padding: 5px;
        margin: 10px;
        border: 5px dashed #8a2be2;
        border-radius: 10px;
        box-shadow: 0 0 10px #00ff00;
      }

      .flying {
        width: 250px;
        position: absolute;
        top: 0;
        left: 0;
        animation: fly 5s linear infinite;
      }

      @keyframes fly {
        0% {
          transform: translate(0, 0);
        }
        100% {
          transform: translate(100vw, 100vh);
        }
      }

      .professionals {
        height: 350px;
        display: block;
        margin: auto;
      }
    </style>
  </head>
  <body>
    <div class="sliding-text-container">
      <div class="sliding-text">
        🏴‍☠️ Avast Ye Matey! Your crazy pirates are working hard to provide this service! 🏴‍☠️
      </div>
    </div>
    <div class="crazy">
      <h1>Shiver Me Timbers! 🦜</h1>
      <img src="ng2.png" class="professionals">
      <p>Try again later or consult our Nigerian technicians for a swashbucklin' solution! ⚓️</p>
    </div>
    <img src="ng1.jpg" class="flying">
  

</body></html>