-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
101 lines (86 loc) · 3.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MCQ Assessment</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
</head>
<body>
<!-- start Quiz button -->
<div class="details">
<center><div class="details-title"><span>Personal Details</span></div></center>
<div class="input">
<input type="text" name="name" id="name"placeholder="Enter Name"required autofocus>
</div>
<div class="input">
<input type="email" name="email" id="email"placeholder="Enter Email"required>
</div>
<div class="start_btn"><button>Start Test</button></div>
</div>
<!-- Info Box -->
<div class="info_box">
<div class="info-title"><span>Some Rules of this Test</span></div>
<div class="info-list">
<div class="info">1. You will have only <span>15 seconds</span> per each question.</div>
<div class="info">2. Once you select your answer, it can't be undone.</div>
<div class="info">3. You can't select any option once time goes off.</div>
<div class="info">4. You can't exit from the Test in between.</div>
<div class="info">5. You'll get marks on the basis of your correct answers.</div>
</div>
<div class="buttons">
<button class="quit">Exit Test</button>
<button class="restart">Continue</button>
</div>
</div>
<!-- Quiz Box -->
<div class="quiz_box">
<header>
<div class="title">Assessment</div>
<div class="timer">
<div class="time_left_txt">Time Left</div>
<div class="timer_sec">15</div>
</div>
<div class="time_line"></div>
</header>
<section>
<div class="que_text">
</div>
<div class="option_list">
</div>
</section>
<!-- footer of Quiz Box -->
<footer>
<div class="total_que">
</div>
<button class="next_btn">Next Que</button>
</footer>
</div>
<!-- Result Box -->
<div class="result_box">
<div class="icon">
<i class="fas fa-crown"></i>
</div>
<div class="complete_text">You've completed the Test!</div>
<div class="score_text">
</div>
<div class="buttons">
<button class="quit">Quit Test</button>
</div>
</div>
<div><p id ="footer"></p></div>
<!-- Inside this JavaScript file I've coded all Questions -->
<script src="js/questions.js"></script>
<!-- Script for adding Particles -->
<div id="particles-js">
<script type="text/javascript" src="particles/particles.js"></script>
<script type="text/javascript" src="particles/app.js"></script>
</div>
<!-- Functionality Page -->
<script src="js/script.js"></script>
<!-- Email Integration -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
</body>
</html>