forked from fengshuo2004/geofs-alarms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.html
36 lines (36 loc) · 1.21 KB
/
example.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sound Effect Tests</title>
<style>
body{
font-family: Consolas, sans-serif;
}
h1 {
color: white;
background-color: #25405E;
}
</style>
</head>
<body>
<h1>GeoFS Alarms Addon</h1>
<h2>Sound Test Page</h2>
<h3>You may preview the sounds included in the extension here</h3>
<p>🔊 Stall Stick-shaker <sup>Boeing</sup>:</p>
<audio controls loop>
<source src="stall.ogg" type="audio/ogg">
Unable to display audio because your browser does not support it.
</audio>
<p>🔊 Overspeed Clacker <sup>Boeing</sup>:</p>
<audio controls loop>
<source src="overspeed.ogg" type="audio/ogg">
Unable to display audio because your browser does not support it.
</audio>
<p>🗣️ "Bank Angle" GPWS warning <sup>Boeing</sup>:</p>
<audio controls loop>
<source src="bankangle.ogg" type="audio/ogg">
Unable to display audio because your browser does not support it.
</audio>
</body>
</html>