-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 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
<!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="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container">
<div class="box">
<div class="timer">
<div class="min">00 </div>:
<div class="sec"> 00</div>
</div>
</div>
<div class="actions">
<button class="start btn btn-success">Start<i class="fa fa-play" aria-hidden="true"></i></button>
<button class="pause btn btn-primary">Pause<i class="fas fa-stop"></i></i></button>
<button class="reset btn btn-danger">Reset<i class="fas fa-redo-alt"></i></i></button>
</div>
</div>
<script src="main.js"></script>
</body>
</html>