forked from LanceRoe/h5p-selfhost-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.html
23 lines (23 loc) · 775 Bytes
/
en.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html lang="en">
<head>
<link type="text/css" rel="stylesheet" media="all" href="dist/styles/h5p.css" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Blades in the Dark - Gang Personality Quiz - What type of gang do you lead?</title>
<script type="text/javascript" src="dist/js/h5p-standalone-main.js"></script>
<script type="text/javascript">
(function($) {
$(function() {
$('.h5p-container').h5p({
frameJs: 'dist/js/h5p-standalone-frame.min.js',
frameCss: 'dist/styles/h5p.css',
h5pContent: 'workspace/bitd-gang-personality-quiz'
});
});
})(H5P.jQuery);
</script>
</head>
<body>
<div class="h5p-container"></div>
</body>
</html>