-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed.html
More file actions
41 lines (41 loc) · 1.24 KB
/
embed.html
File metadata and controls
41 lines (41 loc) · 1.24 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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Nimble by LearnModu</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./static/style.css">
<style>
html,body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: #000;
}
</style>
</head>
<body>
<div class="video-player">
<video width="640" height="360">
<source src="miracleos.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<div class="controls">
<div class="play-pause"></div>
<div class="progress-bar">
<div class="progress"></div>
</div>
<div class="volume"></div>
<div class="fullscreen"></div>
</div>
<div class="play-button">Play</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>