-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.68 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.68 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Complexity Experiment</title>
</head>
<body>
<script src="./jspsych/dist/jspsych.js"></script>
<script src="./jspsych/dist/plugin-html-keyboard-response.js"></script>
<script src="./jspsych/dist/plugin-html-slider-response.js"></script>
<script src="./jspsych/dist/plugin-html-button-response.js"></script>
<script src="./jspsych/dist/plugin-image-keyboard-response.js"></script>
<script src="./jspsych/dist/plugin-image-button-response.js"></script>
<script src="./jspsych/dist/plugin-preload.js"></script>
<script src="./jspsych/dist/plugin-instructions.js"></script>
<script src="./jspsych/dist/plugin-fullscreen.js"></script>
<script src="./jspsych/dist/plugin-survey-likert.js"></script>
<script src="./jspsych/dist/plugin-survey-text.js"></script>
<script src="./jspsych/dist/plugin-survey-html-form.js"></script>
<script src="./jspsych/dist/plugin-call-function.js"></script>
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/sweetalert.min.js"></script>
<script src="./js/complexity.js"> </script>
<link href="./css/jspsych.css" rel="stylesheet" type="text/css">
<link href="./css/complexity.css" rel="stylesheet" type="text/css">
<link href="./css/mobile.css" media="screen and (min-width: 0px) and (max-width: 533px)" rel="stylesheet" type="text/css" />
<link href="./css/tab.css" media="screen and (min-width : 534px) and (max-width: 949px)" rel="stylesheet" type="text/css" />
<link href="./css/laptop.css" media="screen and (min-width : 950px)" rel="stylesheet" type="text/css" />
</body>
</html>