-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (52 loc) · 1.72 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
54
55
56
57
58
<!DOCTYPE html>
<!-- Based on https://github.com/jrue/JavaScript-Quiz by Jeremy Rue -->
<html dir="rtl" lang="he">
<head>
<meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" media="all" href="css/dotsMenu.css">
<link rel="stylesheet" type="text/css" media="all" href="css/app.css">
<title>22916 - הנדסת תוכנה</title>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div class="header">
<!-- three dot menu -->
<div class="dropdown">
<!-- three dots -->
<ul class="dropbtn icons btn-right showLeft" onclick="showDropdown()">
<li></li>
<li></li>
<li></li>
</ul>
<!-- menu -->
<div id="myDropdown" class="dropdown-content">
<a id="setQuizSize" onclick="setQuizSize()">set size</a>
<a id="genBulk" onclick="generateBulk()">all Q</a>
<a id="newquiz" onclick="populateQuiz()">New Quiz</a>
</div>
</div>
</div>
<div class="bgbg">
<div id="frame" role="content"></div>
<hr/>
<div id="myProgress">
<div id="loader"></div>
<div align="center" id="fetchingQ"></div>
</div>
</div>
<br/>
<center>
<div id="qNumText"></div>
<hr/>
<br />
<a href="https://github.com/Romansko/22916" target="_blank">GitHub</a>
</center>
<br/>
</body>
</html>