<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>My Retro Website</title>

  <style>

    body {

      background: url("https://www.transparenttextures.com/patterns/stardust.png") repeat;

      font-family: "Comic Sans MS", cursive, sans-serif;

      color: lime;

      text-align: center;

    }

    h1 {

      font-size: 48px;

      color: #ff00ff;

      text-shadow: 2px 2px black;

    }

    .marquee {

      background: yellow;

      color: red;

      padding: 5px;

      font-weight: bold;

      margin-bottom: 20px;

    }

    a {

      color: cyan;

      text-decoration: none;

    }

    a:hover {

      text-decoration: underline;

    }

    .box {

      border: 3px dashed magenta;

      padding: 20px;

      margin: 20px auto;

      width: 60%;

      background: black;

    }

    .blink {

      animation: blink 1s steps(1, start) infinite;

    }

    @keyframes blink {

      50% { visibility: hidden; }

    }

    footer {

      margin-top: 50px;

      font-size: 14px;

      color: gray;

    }

  </style>

</head>

<body>

  <div class="marquee">

    <marquee>🔥 Welcome to My Awesome Retro Site 🔥</marquee>

  </div>


  <h1>Welcome to My Page!</h1>


  <div class="box">

    <p>Hello traveler of the web…</p>

    <p class="blink">🚧 This site is under construction 🚧</p>

    <img src="https://www.animatedimages.org/data/media/56/animated-construction-image-0061.gif" alt="Under construction">

  </div>


  <p>Check out my <a href="#">Guestbook</a> | <a href="#">Photo Gallery</a> | <a href="#">Links</a></p>


  <footer>

    <p>© 2001 My Retro Website</p>

    <p><img src="https://www.counter12.com/img-xyz12345ABC.png" alt="Visitor counter"></p>

  </footer>

</body>

</html>