We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb60d8 commit 9da8e0cCopy full SHA for 9da8e0c
Source-Code/StopWatch/index.html
@@ -1,11 +1,23 @@
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Document</title>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Stop watch</title>
7
+ <link rel="stylesheet" href="style.css">
8
</head>
9
<body>
-
10
+ <div class="container">
11
+ <h1>Stopwatch</h1>
12
+ <div class="stopwatch">
13
+ <span id="minutes">00</span>:<span id="seconds">00</span>:<span id="milliseconds">00</span>
14
+ </div>
15
+ <div class="buttons">
16
+ <button id="start">Start</button>
17
+ <button id="stop">Stop</button>
18
+ <button id="reset">Reset</button>
19
20
21
+ <script src="script.js"></script>
22
</body>
-</html>
23
+</html>
0 commit comments