-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.28 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.28 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
<!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" />
<script defer src="src/script.js"></script>
<link rel="icon" href="assets/icon.png" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous"/>
<link rel="stylesheet" href="style/style.css" />
<title>Virtual Audio Board</title>
</head>
<body>
<!-- Wrapper Div -->
<div class="wrapper">
<!-- Volume Input Start -->
<h3 class="text-center mt-2 white">
Volume - <span id="volumelevel">50</span>
</h3>
<input type="range" min="0" max="100" value="50" class="form-range" id="volume"/>
<h3 class="text-center white">
Audio - <span id="audioStateValue">On</span>
</h3>
<div class="d-flex justify-content-center">
<div class="form-check form-switch">
<input class="form-check-input" id="audioState" type="checkbox" checked/>
</div>
</div>
<!-- Volume Input End-->
</div>
<!-- Wrapper Div End -->
</body>
</html>