-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 784 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<head>
<link rel="stylesheet" media="screen" href="/testModule/css/screen.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" src="/testModule/js/script.js"></script>
</head>
<body>
<img src="/testModule/image/pic.png" />
<img src="/testModule/image/pic.jpg" />
<img src="/testModule/image/pic.jpeg" />
<p>Hello World</p>
<br />
<input type="button" value="JSON Test" onclick="loadJson( 'http://nheise.net/testModule/json' );" />
<br />
<video controls="controls" preload="none" autobuffer="autobuffer">
<source type='video/ogg' src="/testModule/video/Test.ogv"></source>
<source type='video/mp4' src="/testModule/video/Test.mp4"></source>
</video>
</body>
</html>