-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (42 loc) · 1.31 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap" rel="stylesheet">
<title>JS HomeWork 16 </title>
</head>
<body>
<div class="calendar">
<div class="year"></div>
<div class="clock"></div>
</div>
<div class="wraper_stopwatch">
<div class="stopwatch">
<div class="stopwatch_1">00 : 00 : 00 : 000</div>
<button type="button" class="start">START</button>
<button type="button" class="loop">LOOP</button>
<button type="button" class="stop">STOP</button>
<button type="button" class="reset">RESET</button>
</div>
<ul class="result">
</ul>
</div>
<div class="timer_wraper">
<div class="set_time">
<div class="timestart">25</div>
<div class="minut">MiNUTES</div>
<button class="plus">+</button>
<button class="minus">-</button>
</div>
<div class="timer">
<div class="timer_timer">00:00</div>
<button type="button" class="StartTimer">Start</button>
<button type="button" class="StopTimer">Stop</button>
<button type="button" class="ResetTimer">Reset</button>
</div>
</div>
<script src="JS/main.js" ></script>
</body>
</html>