-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 707 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Quiz Library</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" type="text/css" href="css/form.css">
<link rel="stylesheet" type="text/css" media="print" href="css/print.css">
</head>
<body>
<script src="js/Result.js"></script>
<script src="js/Option.js"></script>
<script src="js/Quiz.js"></script>
<script src="js/Question.js"></script>
<script src="questions.js"></script>
<script>
var quiz = new Quiz("My very first quiz", questions, {"shuffle": true});
</script>
</body>
</html>