-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecorder.html
More file actions
55 lines (48 loc) · 1.56 KB
/
recorder.html
File metadata and controls
55 lines (48 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<!--Author: Dahou Amour *** github:http://github.com/Amour22***all Reserved copyright 2022 -->
<html lang="fr">
<head>
<!--meta-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--title-->
<title>recorder</title>
<!--css link-->
<link rel="stylesheet" href="recorder.css">
</head>
<body>
<header>
<h1>record<span>V</span></h1>
<a class="seeLogs">logs ?</a>
</header>
<main>
<!--principal section-->
<section class="principal">
<!--displays visualizer with canva-->
<canvas class="screen"> </canvas>
<!--controls board-->
<div class="controls">
<button class="record">REC</button>
<button class="stop">STOP</button>
</div>
<!--will contains all audio files-->
<div class="files-container"></div>
</section>
<!--log section-->
<section class="logs-container">
<!--log container! log will be fill dinamically-->
<ul>
</ul>
<button class="resetLog">clean</button>
<!--reset all log -->
</section>
</main>
<footer>
<p>
© Copyright <span class="copyrightYear"></span><a href="http://github.com/dereck22dev"> dereck22</a>
</p>
</footer>
<script src="recorder.js"></script>
</body>
</html>