-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
46 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanila Javascript Recording</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<h1>Online Recorder</h1>
<ul>
<li><a href="#/">Screen Recorder</a></li>
<li><a href="./audio.html">Audio Recorder</a></li>
<li><a href="./video.html">Video Recorder</a></li>
<li><a href="./photo.html">Take Photo</a></li>
</ul>
<span><i class="bi bi-list"></i></span>
</nav>
<main>
<h1>Record Your Device Screen </h1>
<div class="video-container">
<div class="controls">
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="pause">Pause</button>
<a id="download" href="" hidden>Download</a>
</div>
<div class="video">
<h3>Your Record Video</h3>
<video id="preview" autoplay controls muted width="700"></video>
</div>
</div>
</main>
<footer>
<p>Created with <span style="color: red;">❤</span> by <a href="">Abdur Rahim</a>.</p>
</footer>
<script type="module" src="./js/screen/screen.js" defer></script>
<script type="module" src="./js/mobile.js" defer></script>
</body>
</html>