-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (25 loc) · 945 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src='js/FileSaver.js'></script>
<script src='js/html-docx.js'></script>
<script src='js/jszip.min.js'></script>
<link href='css/index.css' rel="stylesheet" type="text/css"></link>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JavaScript Exam Generator</title>
</head>
<body>
<a href="./online_test.html">link to jsbin tests</a>
<h2>
<ol>
<li>input how many questions to be generated, 10 by default, or you can input the answers order you need.</li>
<li>click 'Generate' button to random generate questions</li>
<li>click 'Copy' to auto copy questions to clipboard or 'Save' to download as MS Word files</li>
</ol>
</h2>
</body>
<script src='js/questions.js' type="text/babel"></script>
<script src='js/index.js' type="text/babel"></script>
</html>