-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 991 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MantleDash</title>
<link rel="stylesheet" type="text/css" href="lib/sweet-alert.css">
<link rel="stylesheet" type="text/css" href="lib/jquery.terminal.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<video autoplay loop poster="thumb.png" id="bgvid">
<source src="fire.mp4" type="video/mp4">
</video>
<audio preload="auto" id="audiobomb">
<source src="bomb.mp3" type="audio/mpeg">
</audio>
<audio preload="auto" id="audioleedle">
<source src="leedle.mp3" type="audio/mpeg">
</audio>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="lib/sweet-alert.js"></script>
<script src="lib/jquery.terminal-0.8.8.min.js"></script>
<script src="mantledash.js"></script>
<script src="mantlebot.js"></script>
<script src="terminal.js"></script>
<div id="terminal"></div>
</body>
</html>