-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 2.38 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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<title>Introduction</title>
<meta charset="UTF-8">
<meta name="description" content="Story Telling Studies">
<meta name="Thomas Mildner">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:400,600,700" rel="stylesheet">
<script type="text/javascript" src="js/expLogic.js"></script>
</head>
<body onload="checkMobileBrowser()">
<div class="content">
<h1>Introduction</h1>
<p>To start this experiment, first make sure your browser allows <i>JavaScript</i>. If you have already
participated in this or a similar study you cannot take part in this experiment. However, this does not count for the <b>second part of this experiment</b> which you might not have done yet.
</br>
</br>
Confirming, that you are eligible to take part in this study will start the experiment.
Once started, please continue with the task until the end.</p>
<p>At the end of the experiment you may close this tab and return to the questionnaire. Thank you very much!
</br>Though most browsers work just fine, for best experience we recommend using Google Chrome desktop browser.</p>
<p>Kind Regards, </br>Thomas</p>
<div class="confirmation">
<div class="confirmation-buttons">
<a class="confirmation-button-cancel" href="abort.html">Cancel</a>
</div>
<div class="confirmation-buttons">
<a href="experiment.html">I confirm that I am eligible to take part in this study</a>
</div>
</div>
</div>
<div id="footer">
<div id="footer-content">
<a id="footer-information" href="information.html">more information</a>
<div></div>
<div></div>
<a id="footer-impress" href="impress.html">impress</a>
</div>
</div>
</body>
<script>
function checkMobileBrowser() {
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent)) {
alert("This website is only optimized for desktop browsers. For best experience please continue with a desktop computer. Thank you!");
}
}
</script>
</html>