mirror of
https://github.com/LucasVbr/timer.git
synced 2026-05-13 17:22:04 +00:00
f8fd5d167b
Sound do not play because there is a security on Chrome. User need to interact with the page.
16 lines
448 B
HTML
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> |