Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
540 B
2
Indexable
Never
<!DOCTYPE html>
<html>
<head>
  <title>Warning Message</title>
  <style>
    body {
      background-color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }

    .warning-message {
      color: red;
      font-size: 3em;
      font-weight: bold;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }
  </style>
</head>
<body>
  <div class="warning-message">WARNING! Do not reboot</div>
</body>
</html>
Leave a Comment