-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchemExam.html
734 lines (679 loc) · 28.8 KB
/
chemExam.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@font-face {
font-family: 'Gotham';
src: url('fonts/Gotham Bold.otf');
}
@font-face {
font-family: 'Gotham-Light';
src: url('fonts/Gotham XLight.otf');
}
body{
background-color: white;
}
.btnDesign{
background-color: #216bbd;
color: white;
border: none;
padding: 12px 50px;
text-align: center;
text-decoration: none;
font-family: 'Gotham';
display: inline-block;
font-size: 25px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.btnDesign:hover{
background-color: #eb3e38;
border: none;
color: white;
}
.centerDiv {
margin: auto;
text-align: center;
}
.M_Title{
text-align: center;
padding-top: 10%;
}
#title1{
color: #eb3e38;
font-family: Gotham;
font-size: 100px;
display:inline;
}
#title2{
color: #eb3e38;
font-family: Gotham-Light;
font-size: 100px;
display:inline;
}
h3{
color: #0d0d0d;
font-family: Gotham-Light;
font-size: 40px;
}
h4{
color: #0d0d0d;
font-family: Gotham-Light;
display:inline;
font-size: 30px;
}
li{
padding-left: 6%;
padding-top: 2%;
}
.hidden {
display: none;
margin: auto;
text-align: left;
}
.visible {
display: block;
margin: auto;
text-align: left;
}
</style>
<script>
var quiz_button = "<input id='startQuiz' type=\"button\" onclick=\"startQuestions()\" value=\"Next\" class=\"btnDesign\">";
//var des_button = "<center><input id='startDes' type=\"button\" onclick=\"startQuiz()\" value=\"Start Game\" class=\"btnDesign\"></center>";
function startQuiz(){
//This function hides the description Menu and show the timer and question menu
document.getElementById("rules").setAttribute('class','hidden');
document.getElementById("radioButtons").setAttribute('class', 'visible');
document.getElementById("timer").setAttribute('class', 'visible');
document.getElementById("questionMenu").innerHTML += quiz_button;
startQuestions();
timer();
}
function description() {
//Visible Start Menu division (Title,Button)
document.getElementById("startMenu").style.display = 'none';
document.getElementById("rules").setAttribute('class', 'visible');
//document.getElementById("rules").innerHTML += des_button;
}
var counter = 0;
var questions = [
" PH (power of Hydrogen) value of black coffee is",
"When a metal replaces hydrogen atom then compound form is",
"KOH is used in making of",
"If concentration of H+ is greater than 1 x 10-7 then solution is",
"Acid used for manufacture of fertilizers and explosives is",
"Commercial sources of alkanes include",
"If we remove one hydrogen (H) atom from alkane (saturated hydrocarbon), we get",
"Almost 95% of compounds are of carbon because it can form",
"Nature of organic compounds is",
"Suffix in alkane represents"
];
var answers = ["4","3","4","3","1","4","1","4","3","4"];//Correct answers No.
var users_answers = [];
var answers = [
[" 7", " 8", " 3", " 5"],
[" oxide", " ether", " salt", " alcohol"],
[" drain cleaner", " antacid", " cement", " liquid soap"],
[" neutral", " basic", " acidic", " aqueous"],
[" Nitric acid", "Sulfuric acid", " phosphoric acid", " hydrochloric acid"],
[" coal", " natural gas", " petroleum", " all of the above"],
[" alkyl group", " alkene group", " alkyne group", " aldehyde group"],
[" single bonds", " double bonds", " triple bonds", " multiple bonds"],
[" ionic", " amphoteric", " covalent", " coordinate covalent"],
[" hydrogen atoms", " carbon atoms", " bonds present", " class of compound"]
];//All answers
var quizFinished = false;
function startQuestions() {
//Checks the Question No.(counter) and pass an argument [counter] to displayQandA function add 1 for counter
if(counter == 0) {
displayQandA(answers[counter]);
counter++;
} else if (counter > 0 && counter < 10) {
checkAnswers();
displayQandA(answers[counter]);
counter++;
} else {
checkAnswers();
quizFinished = true;
showMarks();
counter++;
}
}
//This function gets counter and displays question & answer according to counter
//Eg- (If it gets 2 it will display 2nd question and 2 arrays (2D array) 1,2,3 and 4 th answers
function displayQandA(answers) {
document.getElementById("questions").innerHTML = questions[counter];//Question
document.getElementById("q_1").innerHTML = answers[0];//Answers
document.getElementById("q_2").innerHTML = answers[1];
document.getElementById("q_3").innerHTML = answers[2];
document.getElementById("q_4").innerHTML = answers[3];
}
/*In this function first it gets answer radio buttons then checks whether it checked or not if it checked then it
assure the answer is correct or not if yes add 2 marks else deduct 1 marks if the answer wasn't given it add 0 marks */
function checkAnswers() {
var c = 0;
var answers = document.getElementsByName('questions');
//Correct answer list
var q_answers = ["0","4","3","4","3","1","4","1","4","3","4"];
for(var i = 0 ; i < answers.length ; i++){
//Checks radio button is checked
if(answers[i].checked == true){
//Adds to users answer array
users_answers.push(answers[i].value);
//Checks given answer with correct answer
if((answers[i].value) == q_answers[counter]){
changeBGToGreen()
} else {
changeBGToRed();
}
//Un check all radio button
answers[i].checked = false;
c++;
}
}
if(c < 1){
//If answer wasn't given adds 0
users_answers.push(0);
}
}
//After all quiz answer marked this function starts it hide the timer and question and shows the result
function showMarks() {
document.getElementById("timer").setAttribute('class', 'hidden');
document.getElementById("questionMenu").setAttribute('class', 'hidden');
document.getElementById("resultsMenu").setAttribute('class', 'M_Title');
var CorrectAnswers = ["4","3","4","3","1","4","1","4","3","4"];
var marks = 0;
for(var i = 0 ; i < CorrectAnswers.length ; i++){
//Compares given answers and correct answers
if(users_answers[i] == CorrectAnswers[i]){
marks += 2;
} else if (users_answers[i] == 0){
marks += 0;
} else {
marks -= 1;
}
}
var ques = "ques_";
var x,cr_id,gi_id,answ;
for(var i = 0 ; i < answers.length ; i++){
//Shows Question
document.getElementById(ques+(i)).innerHTML = questions[i];
//Shows Correct answers
cr_id = "answ_"+(i);
answ = parseInt(CorrectAnswers[i]);
x = (answ - 1);
document.getElementById(cr_id).innerHTML = "Correct Answer - "+answers[i][x];
//Shows Given answers
gi_id = "giv_"+(i);
answ = parseInt(users_answers[i]);
x = parseInt(answ - 1);
if(x == -1){
document.getElementById(gi_id).innerHTML = "Answer wasn't given";
} else {
document.getElementById(gi_id).innerHTML = "Given Answer - "+answers[i][x];
}
}
//Changes body bg color according to marks
if(marks >= 15){
//Green
document.body.style.backgroundColor = "#007f00";
} else if (marks >= 10) {
//Blue
document.body.style.backgroundColor = "#000066";
} else if (marks >= 5) {
//Orange
document.body.style.backgroundColor = "#cc8400";
} else if (marks > 0) {
//Grey
document.body.style.backgroundColor = "#696969";
} else {
//Red
document.body.style.backgroundColor = "#7f0000";
}
//Shows marks
document.getElementById("results").innerHTML = "Your Mark is "+ marks+ " "
+"<div class=centerDiv><a href=index.php><input id=startBtn type=button value=OK class=btnDesign></a></div>"+
"<a>Answers</a><br/>";
}
var seconds_left = 60;
//Timer Runs until 60 seconds if users couldn't finish within 60 seconds it ends the program and show marks user until finished
function timer() {
var interval = setInterval(function() {
document.getElementById('timer').innerHTML = "Seconds Left "+--seconds_left;
if (seconds_left == 0)
{
document.getElementById('timer').innerHTML = 'Time finished';
if(quizFinished == false) {
showMarks();
}
clearInterval(interval);
}
}, 1000);
}
function changeBGToRed() {
var redColor = ["#ff0000","#ff1919","#ff3232","#ff4c4c","#ff6666","#ff7f7f","#ff9999","#ffb2b2","#ffcccc","#ffe5e5","#ffffff"];
var counter = 0;
var interval = setInterval(function() {
++counter;
document.body.style.backgroundColor = redColor[counter];
if (counter > 10)
{
clearInterval(interval);
}
}, 40);
}
function changeBGToGreen() {
var greenColor = ["#00ff00","#19ff19","#32ff32","#4cff4c","#66ff66","#7fff7f","#99ff99","#b2ffb2","#ccffcc","#e5ffe5","#ffffff"];
var counter = 0;
var interval = setInterval(function() {
++counter;
document.body.style.backgroundColor = greenColor[counter];
if (counter > 10)
{
clearInterval(interval);
}
}, 40);
}
function changeBGToBlue() {
var blueColor = ["#0000ff","#0000e5","#0000cc","#0000b2","#000099","#00007f","#000066","#00004c","#000033","#000019","#ffffff"];
var counter = 0;
var interval = setInterval(function() {
++counter;
document.body.style.backgroundColor = blueColor[counter];
if (counter > 10)
{
clearInterval(interval);
}
}, 40);
}
</script>
<!-- Meta Tags -->
<meta charset="UTF-8">
<!-- Theme Page Title -->
<title>Web Edu | Online Education System</title>
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--css link-->
<link href="menuzord.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="revolution-slider.css" rel="stylesheet">
<link href="reset-style.css" rel="stylesheet">
<link href="responsive.css" rel="stylesheet">
<link href="themecolor.css" rel="stylesheet" id="colorswitcher">
</head>
<body onload=progress(1,20)>
<!--wrapper start-->
<div class="wrapper">
<!-- Preloader -->
<div class="preloader"></div>
<!-- Start Main Header -->
<header class="mega-header">
<div class="header-top">
<div class="container">
<div class="row clearfix">
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<a class="logo" href="index.html"><img src="images/capture.PNG" alt="Logo" title="Medical"></a>
</div>
<div class="col-lg-8 col-md-8 col-sm-12 header-top-widget headerwidget-style2">
<div class="header-widget">
<div class="iconbox-widget">
<div class="icon">
<img src="images/signup.png">
<!-- <i class="flaticon-square"></i> -->
</div>
<div class="box-contenet">
<h5 class="title"><a href="login.php">Sign In</a></h5>
<p class="sub-title"><a href="#">If you have account</a></p>
</div>
</div>
<div class="iconbox-widget">
<div class="icon">
<img src="images/login.png">
<!-- <i class="flaticon-medical-1"></i> -->
</div>
<div class="box-contenet">
<h5 class="title"><a href="signup.php">Sign Up</a></h5>
<p class="sub-title"><a href="#">If you don't have account</a></p>
</div>
</div>
<div class="iconbox-widget">
<div class="icon">
<img src="images/phone.png">
</div>
<div class="box-contenet">
<h5 class="title"><a href="#">Call Us Today</a></h5>
<p class="sub-title"><a href="#">(+94) 754 014 629</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Header Main-->
<div class="header-main">
<div class="container">
<div class="row clearfix">
<!--Main Menu-->
<div class="mega-menu col-lg-12 col-md-12 col-sm-12 col-xs-12">
<nav id="menuzord" class="menuzord menuzord-responsive">
<ul class="menuzord-menu">
<li class="active"><a href="index.php">Home</a>
</li>
<li><a href="#sessions">Donations</a></li>
<li><a href="#service">Sessions</a>
<ul class="dropdown">
<li><a href="services-style1.html">Upload</a></li>
<li><a href="services-style2.html">Engilsh</a></li>
<li><a href="services-style3.html">Tamil</a></li>
<li><a href="service-details.html">Sinhala</a></li>
</ul>
</li>
<li><a href="#discussions">Discussions</a>
<ul class="dropdown">
<li><a href="blog-style1.html">Ask Questions</a></li>
<li><a href="blog-style2.html">Answer Questions</a></li>
</ul>
</li>
<li><a href="#equipments">Equipments</a></li>
<li><a href="#about-us">About Us</a></li>
</ul>
<div class="appoint-inner">
<div class="appoint-btn text-right">
<a href="#footer">Contact Us</a>
</div>
</div>
</nav>
</div>
<!--Main Menu End-->
</div>
</div>
</div>
</header>
<!--End Main Header -->
<section class="picture" style="height:200px">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<br><br>
<h6 class="whiteColor" style="font-size: 30px"><b>Test your knowledge</b></h6><h6 class="title" style="font-size: 30px"><b>Chemistry</b></h6>
</div>
</div>
</div>
</section>
<br>
<section>
<!--Timer-->
<h3 id="timer" class="hidden" style="text-align: right;padding-right: 2%;padding-top: 2%;"></h3>
<!--Start Menu-->
<div class="contentdiv">
<div id="startMenu">
<div class="M_Title">
<h1 id="title1">Chemistry</h1>
<h2 id="title2">Exam</h2>
</div>
<div class="centerDiv">
</br><input id="startBtn" type="button" onclick="description()" value="START" class="button btnDesign">
</div>
</div>
</div>
<!--Description Menu-->
<div class="contentdiv">
<div id="rules" class="hidden">
<center><h2 id="title2" style="font-size: 140px; color: #eb3e38;">Rules</h2><br></center>
<ul>
<li>         <h4> * 10 Chemistry questions will be given to you</h4><br></li>
<li>         <h4> * For each correct answers 2 points will be awarded and for a wrong answer 1 point will be detected</h4></li>
<li>         <h4> * If the answer is correct background colour changes to green else it changes to red </h4></li>
<li>         <h4> * The exam is time limited and it should be finished within 60 seconds</h4></li>
<li>         <h4> * Marks will be given after the exam is completed </h4><br><br><br></li>
</ul>
<center><input id='startDes' type="button" onclick="startQuiz()" value="Start Game" class="button btnDesign"></center>";
</div>
</div>
<!--Question Menu-->
<div class="contentdiv">
<div id="questionMenu" class="centerDiv">
<h3 id="questions"></h3>
<div id="radioButtons" class="hidden">
<table align="center">
<tr><td><input type="radio" name="questions" value="1"><h4 id="q_1"></h4></br></td></tr>
<tr><td><input type="radio" name="questions" value="2"><h4 id="q_2"></h4></br></td></tr>
<tr><td><input type="radio" name="questions" value="3"><h4 id="q_3"></h4></br></td></tr>
<tr><td><input type="radio" name="questions" value="4"><h4 id="q_4"></h4></br></td></tr>
</table>
</div></br>
<!--<h3 id="timer" class="hidden" style="text-align: center;"></h3>-->
</div>
</div>
<!--Final Answers Menu-->
<div class="contentdiv">
<div id="resultsMenu" class="hidden">
<h2 id="results"></h2>
<h3 id="ques_0"></h3><h4 id="answ_0"></h4></br><h4 id="giv_0"></h4>
<h3 id="ques_1"></h3><h4 id="answ_1"></h4></br><h4 id="giv_1"></h4>
<h3 id="ques_2"></h3><h4 id="answ_2"></h4></br><h4 id="giv_2"></h4>
<h3 id="ques_3"></h3><h4 id="answ_3"></h4></br><h4 id="giv_3"></h4>
<h3 id="ques_4"></h3><h4 id="answ_4"></h4></br><h4 id="giv_4"></h4>
<h3 id="ques_5"></h3><h4 id="answ_5"></h4></br><h4 id="giv_5"></h4>
<h3 id="ques_6"></h3><h4 id="answ_6"></h4></br><h4 id="giv_6"></h4>
<h3 id="ques_7"></h3><h4 id="answ_7"></h4></br><h4 id="giv_7"></h4>
<h3 id="ques_8"></h3><h4 id="answ_8"></h4></br><h4 id="giv_8"></h4>
<h3 id="ques_9"></h3><h4 id="answ_9"></h4></br><h4 id="giv_9"></h4>
</div>
</div>
</section>
</div>
<!--Main Content end-->
<!-- Footer Start-->
<footer class="footer-section" id="footer">
<div class="container >
<div class="row go_pt fo_pb">
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="footer-widget" style="margin-left:-70px">
<a href="#" class="footer-logo"><img src="images/capture.png" alt="" ></a>
<p>We value your feedback and it will help us to improve our service in futere. Please contact us</p>
<div class="widget-contact" >
<p><img src="images/footer/house.png"> 23,Arethusa lane,Colombo</p>
<p><img src="images/footer/gmail.png"> teamweb_ex@gmail.com</p>
<p><img src="images/footer/mobile.png"> (+94) 75 401 4629</p>
</div>
<ul class="social-icons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=http%3A//localhost/template/index.php"><img src="images/footer/fb.png"></a></li>
<li><a href="https://twitter.com/home?status=http%3A//localhost/template/index.php"><img src="images/footer/twitter.png"></a></li>
<li><a href="#"><img src="images/footer/youtube.png"></a></li>
<li><a href="#"><img src="images/footer/email.png"></a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6">
<div class="footer-widget">
<div class="footer-widget-title">
<h4 class="widget-title">Useful Links</h4>
</div>
<ul class="widget-links">
<li><img src="images/footer/arrow.png"><a href="#">Choosing a Lecturer</a></li>
<li><img src="images/footer/arrow.png"><a href="#">Ask Question</a></li>
<li><img src="images/footer/arrow.png"><a href="#">About Us</a></li>
<li><img src="images/footer/arrow.png"><a href="#">User Account</a></li>
<li><img src="images/footer/arrow.png"><a href="#">Our Support Forum</a></li>
<li><img src="images/footer/arrow.png"><a href="#">Our Help Center</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-2 col-sm-6">
<div class="footer-widget">
<div class="footer-widget-title">
<h4 class="widget-title">services</h4>
</div>
<ul class="widget-links">
<li><img src="images/footer/arrow.png"><a href="#">Online videos</a></li>
<li><img src="images/footer/arrow.png"><a href="#">Online exams</a></li>
<li><img src="images/footer/arrow.png"><a href="#">Q & A services</a></li>
<li><img src="images/footer/arrow.png"><a href="#">Donation</a></li>
<li><img src="images/footer/arrow.png"><a href="#">Help</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<div class="footer-widget">
<div class="footer-widget-title">
<h4 class="widget-title">Latest Videos</h4>
</div>
<div class="widget-news">
<div class="widget-news-post">
<div class="thumb">
<img src="images/blog/p.jpg" alt="">
</div>
<div class="content">
<p class="title"><a href="#blog">Learn about food making process in plants</a></p>
<div class="meta-date">29 Feb 2017</div>
</div>
</div>
<div class="widget-news-post">
<div class="thumb">
<img src="images/blog/m.jpg" alt="">
</div>
<div class="content">
<p class="title"><a href="#blog">Have an idea about forces and motion of objects</a></p>
<div class="meta-date">04 Apr 2017</div>
</div>
</div>
<div class="widget-news-post">
<div class="thumb">
<img src="images/blog/o.png" alt="">
</div>
<div class="content">
<p class="title"><a href="#blog">Formation of organic compounds</a></p>
<div class="meta-date">19 Feb 2017</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 text-center">
<p class="copy-right">© Copyright 2017 - <a href="https://themeforest.net/user/icute_theme/portfolio" target="_blank">Web_Ex TEAM </a>| all right reserved
</div>
</div>
</div>
</div>
</footer>
<!--Footer end-->
<!-- Start Menu Switcher -->
<!-- <div class="menu-switcher">
<a class="switcher-btn" id="switcher-toggle" href="#"><i class="fa fa-cog"></i></a>
<h5 class="switcher-title">Reset Theme Style</h5>
<h6 class="title">Chose theme color</h6>
<ul class="switcher-color">
<li>
<a class="scr-color1" onclick="swapStyleSheet('themecolor.css')"></a>
</li>
<li>
<a class="scr-color2" onclick="swapStyleSheet('css/color/themecolor2.css')"></a>
</li>
<li>
<a class="scr-color3" onclick="swapStyleSheet('css/color/themecolor3.css')"></a>
</li>
<li>
<a class="scr-color4" onclick="swapStyleSheet('css/color/themecolor4.css')"></a>
</li>
<li>
<a class="scr-color5" onclick="swapStyleSheet('css/color/themecolor5.css')"></a>
</li>
<li>
<a class="scr-color6" onclick="swapStyleSheet('css/color/themecolor6.css')"></a>
</li>
<li>
<a class="scr-color7" onclick="swapStyleSheet('css/color/themecolor7.css')"></a>
</li>
<li>
<a class="scr-color8" onclick="swapStyleSheet('css/color/themecolor8.css')"></a>
</li>
</ul>
<h6 class="title">Chose layout wide</h6>
<ul class="switcher-laout-boxed-wide">
<li>
<a class="btn-widelayout" href="#btn-widelayout">Wide</a>
</li>
<li>
<a class="btn-boxedlayout" href="#btn-boxedlayout">Boxed</a>
</li>
</ul>
<h6 class="title">Chose Background Image <span>(Boxed Wide)</span></h6>
<ul class="switcher-layout-bgimg">
<li><a class="switcher-bgi-pattern">rs</a></li>
<li><a><img class="switcher-bgi-pattern" src="images/resource/w01.jpg"></a></li>
<li><a><img class="switcher-bgi-pattern" src="images/resource/w02.jpg"></a></li>
<li><a><img class="switcher-bgi-pattern" src="images/resource/w03.jpg"></a></li>
<li><a><img class="switcher-bgi-pattern" src="images/resource/w04.jpg"></a></li>
<li><a><img class="switcher-bgi-pattern" src="images/resource/w05.jpg"></a></li>
<li><a><img class="switcher-bgi-solid" src="images/resource/1.jpg"></a></li>
<li><a><img class="switcher-bgi-solid" src="images/resource/2.jpg"></a></li>
<li><a><img class="switcher-bgi-solid" src="images/resource/3.jpg"></a></li>
<li><a><img class="switcher-bgi-solid" src="images/resource/4.jpg"></a></li>
<li><a><img class="switcher-bgi-solid" src="images/resource/5.jpg"></a></li>
<li><a><img class="switcher-bgi-solid" src="images/resource/6.jpg"></a></li>
</ul>
</div>
--> <!-- Side Menu-->
<!-- <div class="side-toggle-menu">
<a class="side-menu-btn toggle-menu menu-right"><i class="fa fa-bars"></i></a>
<nav class="cbp-spmenu cbp-spmenu-vertical cbp-spmenu-right">
<a class="side-menu-btn-close pull-right"><i class="fa fa-close"></i></a>
<a class="logo" href="index.html"><img src="images/logo-white.png" alt="Logo" title="CuteGarden"></a>
<ul class="nav-stacked">
<li><a href="index.html">Home</a></li>
<li><a href="services-style1.html">Services</a></li>
<li class="sidemenu-dropdown">
<a>Pages <span class="caret"></span></a>
<ul class="sidemenu-dropdown-active">
<li><a href="about.html">About</a></li>
<li><a href="pricing-style1.html">Pricing</a></li>
<li><a href="testimonials-style1.html">Testimonials</a></li>
<li><a href="faq.html">Faq</a></li>
<li><a href="404.html">404 Page</a></li>
</ul>
</li>
</ul>
</nav>
</div>
<!--Scroll to top-->
<!-- <div class="scroll-to-top"><span class="fa fa-arrow-up"></span></div>
</div> -->
--><!--wrapper end-->
<!--Jquery Script-->
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/menuzord.js"></script>
<script src="js/jPushMenu.js"></script>
<script src="js/revolution.min.js"></script>
<script src="js/owl.js"></script>
<!-- validate -->
<script src="js/validate.js"></script>
<!-- jQuery ui js -->
<script src="js/jquery-ui-1.11.4/jquery-ui.js"></script>
<!-- appear js -->
<script src="js/jquery.appear.js"></script>
<!-- isotope -->
<script src="js/isotope.pkgd.min.js"></script>
<!-- count to -->
<script src="js/jquery.countTo.js"></script>
<!-- fancybox -->
<script src="js/jquery.fancybox.pack.js"></script>
<!-- easing -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/wow.js"></script>
<script src="js/rev-custom.js"></script>
<script src="js/customcollection.js"></script>
<script src="js/custom.js"></script>
</body>
</html>