-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.06 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.06 KB
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">
<title>Title</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container" id="slider">
<div class="container-item">
<h1 class="container-item__header">Time</h1>
<div class="container-time" id="time">
<div class="container-time__hours" id="hours"></div><span class="divider">:</span>
<div class="container-time__minutes" id="minutes"></div><span class="divider">:</span>
<div class="container-time__seconds" id="seconds"></div>
</div>
</div>
<div class="container-item">
<h1 class="container-item__header">Timer</h1>
<button class="btn">Start</button>
<button class="btn">Stop</button>
<button class="btn">Reset</button>
</div>
<div class="container-controls">
<div class="prev"><</div>
<div class="next">></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>