-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (31 loc) · 882 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stopwatch</title>
<link rel="stylesheet" href="./style.css" />
<link
rel="shortcut icon"
href="./asssets/stop-watch.png"
type="image/x-icon"
/>
</head>
<body>
<main>
<div class="container">
<div id="date"></div>
<div id="time"></div>
<div id="stopWatch">00:00:00:00</div>
<button id="play">START</button>
<button id="stop">STOP</button>
<button id="reset">RES</button>
</div>
<!-- Ses dosyaları -->
<audio id="playSound" src="./asssets/effects/start.mp3"></audio>
<audio id="stopSound" src="./asssets/effects/stop.mp3"></audio>
<audio id="resetSound" src="./asssets/effects/reset.mp3"></audio>
</main>
<script src="./script.js"></script>
</body>
</html>