-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·27 lines (27 loc) · 783 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·27 lines (27 loc) · 783 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sound Machine</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="css/index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="settings">Settings</div>
<div class="close">Close</div>
<div id="main" class="container-fluid">
<div class="full-w">
<div class="speaker">
<div id='speaker-box' class="speaker-box"></div>
</div>
<h1>
<img src="img/logo.png"/>
</h1>
<div id="buttons" class='buttons'></div>
</div>
</div>
<script>
require('./index.js')
</script>
</body>
</html>