-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Atma&family=Dancing+Script&family=Indie+Flower&family=Sansita+Swashed&family=Source+Sans+Pro&family=Supermercado+One&display=swap">
<title>Stop Watch Run</title>
</head>
<body>
<div class="container">
<video id="myVideo" class = "video" width="320" height="176">
<source src="video.mp4" type="video/mp4">
</video>
<div class="timer">
<p>
<span class="mins">00</span>:<span class="seconds">00</span>:<span class="milliseconds">00</span>
</p>
</div>
<div class="buttons">
<i class="fa-solid fa-circle-play start"></i>
<i style="display: none;"class="fa-solid fa-circle-pause pause"></i>
<i class="fa-solid fa-circle-stop stop"></i>
</div>
</div>
<script src="app.js"></script>
</body>
</html>