<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta name="description" content="Learn how to build a modern digital clock using HTML, CSS, and JavaScript with animated circular progress bars." />
  <meta name="keywords" content="digital clock html css javascript, javascript clock project, html css js projects" />
  <meta name="author" content="Your Name" />

  <title>Digital Clock Using HTML CSS and JavaScript</title>

  <link rel="stylesheet" href="style.css" />
</head>
<body>

  <div class="container">

    <h1 class="title">Digital Clock</h1>

    <div id="time">

      <!-- Hours -->
      <div class="circle" style="--clr:#ff2972;">
        <div class="dots h_dot"></div>

        <svg>
          <circle cx="70" cy="70" r="70"></circle>
          <circle cx="70" cy="70" r="70" id="hh"></circle>
        </svg>

        <div id="hours">00 <span>Hours</span></div>
      </div>

      <!-- Minutes -->
      <div class="circle" style="--clr:#fee800;">
        <div class="dots m_dot"></div>

        <svg>
          <circle cx="70" cy="70" r="70"></circle>
          <circle cx="70" cy="70" r="70" id="mm"></circle>
        </svg>

        <div id="minutes">00 <span>Minutes</span></div>
      </div>

      <!-- Seconds -->
      <div class="circle" style="--clr:#04fc43;">
        <div class="dots s_dot"></div>

        <svg>
          <circle cx="70" cy="70" r="70"></circle>
          <circle cx="70" cy="70" r="70" id="ss"></circle>
        </svg>

        <div id="seconds">00 <span>Seconds</span></div>
      </div>

      <!-- AM PM -->
      <div class="ap">
        <div id="ampm">AM</div>
      </div>

    </div>
  </div>

  <script src="script.js"></script>
</body>
</html>
