Files
timer/index.htm
T
Tchi f8fd5d167b Edit color and add sound
Sound do not play because there is a security on Chrome. User need to interact with the page.
2021-07-04 16:37:21 +02:00

16 lines
448 B
HTML

<!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="./css/style.css">
<title>Timer</title>
</head>
<body>
<p id="timer"></p>
<audio id="ding" src="./sounds/ding.mp3"></audio>
<script src="./js/url.js"></script>
<script src="./js/timer.js"></script>
<script src="./js/main.js"></script>
</body>
</html>