generated from cogtoolslab/project_template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
43 lines (36 loc) · 1.98 KB
/
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
41
42
43
<!DOCTYPE html>
<html>
<!-- https://stackoverflow.com/questions/31075893/im-getting-favicon-ico-error -->
<link rel="shortcut icon" href="">
<link rel="shortcut icon" href="#">
<title>Physics experiment</title>
<head>
<script type="text/javascript" src="js/assets/socket.io.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript"
src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/lodash.min.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/ui-lightness/jquery-ui.css">
<link href="custom.css" rel="stylesheet" type="text/css">
<!-- JsPsych -->
<script type="text/javascript" src="js/jspsych.js"></script>
<script type="text/javascript" src="js/plugins/jspsych-video-overlay-button-response.js"></script>
<script type="text/javascript" src="js/plugins/jspsych-image-button-response.js"></script>
<script type="text/javascript" src="js/plugins/jspsych-html-keyboard-response.js"></script>
<script type="text/javascript" src="js/plugins/jspsych-survey-text.js"></script>
<script type="text/javascript" src="js/plugins/jspsych-survey-multi-choice.js"></script>
<script src="js/plugins/jspsych-instructions.js"></script>
<script type="text/javascript" src="js/setup.js"></script>
<script type="text/javascript">
socket = io.connect();
window.onload = function () {
launchExperiment();
}
</script>
</head>
<body style="font-family: Lato, 'sans-serif'"></body>
</html>