-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MediaStream Recording JS API</title>
<meta name="description" content="MediaStream Recording JS API " />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="main">
<div class="section">
<button id="startAudio" class="button gradient">
<span>record audio </span>
<i class="fas fa-microphone-alt"></i>
</button>
<button id="stopAudio" class="button gradient">
<span>stop recording</span>
<i class="fas fa-stop-circle"></i>
</button>
<button id="startScreen" class="button gradient">
<span>record screen</span>
<i class="fas fa-video"></i>
</button>
</div>
<div class="gallery">
<h3>Audios</h3>
<hr />
<div id="audio-list" class="container"></div>
<h3>Videos</h3>
<hr />
<div id="video-list" class="container"></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>