-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·40 lines (32 loc) · 974 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
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="img/favicon.png"/>
<!-- CSS -->
<link rel="stylesheet" href="css/style.css" media="screen"/>
<!-- jQuery Library-->
<script src="js/jQuery.min.js"></script>
<script src="js/jQuery.connectionChecker.js"></script>
<script src="js/functions.js"></script>
<title>Connection Checker</title>
</head>
<body>
<div id="status" class="">
<div class="ring">
<h2>checking</h2>
</div>
<!-- put here your audio files for a notification -->
<audio preload="auto" autobuffer id="online_Sound">
<source src="audio/online.m4a" />
<source src="audio/online.wav" />
</audio>
<audio preload="auto" autobuffer id="offline_Sound">
<source src="audio/offline.m4a" />
<source src="audio/offline.wav" />
</audio>
</div>
</body>
</html>