-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
51 lines (48 loc) · 1.78 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iSnippet - Salesforce Q & A</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<!-- <body> -->
<!-- Disabled right click -->
<body oncontextmenu="return false">
<p class="text1"> Drag answers to unlock the Quiz</p>
<section id="containment-wrapper">
<article>
<div class="question" id="ques1">Message</div>
<div class="question" id="ques2">Description</div>
<div class="question" id="ques3">
<p>Slide</p>
<p>Description</p>
</div>
<div class="question" id="ques4">External ID</div>
<div class="question" id="ques5">CLM ID</div>
<div class="question" id="ques6">Slide Version</div>
<div class="question" id="ques7">Slide Type</div>
</article>
<article>
<div class="answer" id="sol1">Parent Slide Name
<br/>from Content Map</div>
<div class="answer" id="sol2">External Slide Name
<br/>from Content Map</div>
<div class="answer" id="sol4">Slide PAID (GUID) ::
<br/>Exploria Number</div>
<div class="answer" id="sol5">Slide PAID (GUID)</div>
<div class="answer" id="sol6">Exploria
<br/> Number-MVR</div>
<div class="answer" id="sol7">Un Defined</div>
</article>
</section>
<span class="alert alert-success" role="alert">
<strong>Correct!</strong>
</span>
<span class="alert alert-danger" role="alert">
<strong>Wrong!</strong>
</span>
<script src="js/jQuery.js"></script>
<script src="js/jQuery-UI.js"></script>
<script src="js/script.js"></script>
</body>
</html>