-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1.06 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
<!DOCTYPE HTML>
<html>
<head>
<title>Memory Quiz</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="vendor/magnific-popup.css" media="all" rel="stylesheet" type="text/css" />
<link href="css/style.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="vendor/jquery.js"></script>
<script src="vendor/jquery.magnific-popup.min.js"></script>
<script src="js/memory-quiz.js"></script>
<p><a href="javascript:startQuiz(1)">Einfach</a> <a href="javascript:startQuiz(2)">Mittel</a> <a href="javascript:startQuiz(3)">Schwer</a></p>
<script>
function startQuiz(level) {
$.ajax({
url: 'js/questions-' + level + '.json',
success: function(questions) {
memoryQuiz({
questions: questions
});
},
error: function(){
console.warn(arguments)
}
});
}
</script>
</body>
</html>