-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 992 Bytes
/
index.html
File metadata and controls
41 lines (39 loc) · 992 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Duino</title>
<link rel="stylesheet" href="styles.css">
<!-- <meta name="mobile-web-app-capable" content="yes"> -->
</head>
<body>
<div class="bars">
<div class="display display0">
<div class="label">Waiting..</div>
<div class="bar"></div>
</div>
<div class="display display3">
<div class="label">Waiting..</div>
<div class="bar"></div>
</div>
<div class="display display5">
<div class="label">Waiting..</div>
<div class="bar"></div>
</div>
</div>
<div class="chat">
<form action="">
<input id="m" autocomplete="off" /><button>Send It</button>
</form>
<ul id="messages">
Messages
</ul>
</div>
<button class="blink">Blink</button>
<div class="circle"></div>
<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script src="js/Breakout.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>