<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>About Me</title>
  <link rel="stylesheet" href="style.css" />
  <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
  <div class="wrapper">
    <div class="window">
      <div class="title-bar">
        <span class="title">about_me.exe</span>
        <span class="controls">[-] [ ] [x]</span>
      </div>
      <div class="content">
        <img src="avatar.gif" alt="avatar" class="avatar">
        <p>Hi, I'm <span class="highlight">[Your Name]</span>!</p>
        <p>
          I'm into <span class="highlight">pixel art</span>, <span class="highlight">coding</span>, and all things <span class="highlight">retro web</span>.
        </p>
        <p>This site is a little tribute to the old internet I love.</p>
        <div class="links">
          <a href="#">Tumblr</a> |
          <a href="#">GitHub</a> |
          <a href="likes.html">Likes & Fandoms</a>
        </div>
        <div class="blinkies">
          <img src="https://blinkies.cafe/b/img/4.gif" alt="blinkie">
          <img src="https://blinkies.cafe/b/img/5.gif" alt="blinkie">
          <img src="https://blinkies.cafe/b/img/9.gif" alt="blinkie">
        </div>
      </div>
    </div>

    <div class="window">
      <div class="title-bar">
        <span class="title">music_player.exe</span>
        <span class="controls">[-] [ ] [x]</span>
      </div>
      <div class="content">
        <audio controls loop>
          <source src="your-music.mp3" type="audio/mpeg">
          Your browser does not support the audio tag.
        </audio>
      </div>
    </div>

    <div class="window">
      <div class="title-bar">
        <span class="title">friends.exe</span>
        <span class="controls">[-] [ ] [x]</span>
      </div>
      <div class="content">
        <ul>
          <li><a href="#">friend1.neocities.org</a></li>
          <li><a href="#">friend2.neocities.org</a></li>
        </ul>
      </div>
    </div>

    <marquee behavior="scroll" direction="left" class="marquee">Welcome to my website! Enjoy your stay on the old web :)</marquee>
  </div>
  <script>
    document.body.style.cursor = "url('cursor.cur'), auto";
  </script>
</body>
</html>
