-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
32 lines (32 loc) · 839 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
<!doctype html>
<html>
<head>
<title>Recorder demo</title>
<style type="text/css">
body {
background-color: black;
}
</style>
</head>
<body>
<object width="300" height="180" align="center" id="recorder">
<param name="movie" value="recorder.swf"/>
<param name="allowScriptAccess" value="always" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="bgcolor" value="#333333"/>
<embed src="recorder.swf"
bgcolor="#333333"
width="300"
height="180"
name="recorder"
quality="high"
align="center"
allowScriptAccess="always"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
/>
</object>
</body>
</html>