You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
<title>Theme Clock</title>
|
|
</head>
|
|
<body>
|
|
<!-- Inspired by this dribbble shot https://dribbble.com/shots/5958443-Alarm-clock -->
|
|
|
|
<button class="toggle">Dark mode</button>
|
|
|
|
<div class="clock-container">
|
|
<div class="clock">
|
|
<div class="needle hour"></div>
|
|
<div class="needle minute"></div>
|
|
<div class="needle second"></div>
|
|
<div class="center-point"></div>
|
|
</div>
|
|
<div class="alarm-container">
|
|
<input type="time" id="alarm-time" />
|
|
<button class="set-alarm">Set Alarm</button>
|
|
<div class="alarm-status"></div>
|
|
</div>
|
|
<!-- Add this below the clock-container in your HTML file -->
|
|
<div class="alarm-notification" id="alarm-notification">
|
|
<p>Time's up! Alarm triggered!</p>
|
|
</div>
|
|
|
|
|
|
<div class="time"></div>
|
|
<div class="date"></div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|