├── README.md
├── admin.php
├── admin
├── Delete.php
├── addadmin.php
├── chapter.php
├── deleteexpert.php
├── deleteorder.php
├── expert.php
├── feedback.php
├── footer.php
├── index.php
├── manageexpert.php
├── manageuser.php
├── nav.php
├── order.php
├── subject.php
└── suggestion.php
├── assets
├── css
│ ├── bootstrap-theme.css
│ ├── bootstrap.min.css
│ ├── da-slider.css
│ ├── font-awesome.min.css
│ ├── isotope.css
│ └── style.css
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── images
│ ├── 1.jpg
│ ├── about.jpg
│ ├── arrows.png
│ ├── bg_header.jpg
│ ├── favicon.png
│ ├── images.jpg
│ ├── logo.png
│ ├── photo-1.jpg
│ ├── photo-2.jpg
│ ├── photo-3.jpg
│ ├── photo-4.jpg
│ └── portfolio
│ │ ├── img1.jpg
│ │ ├── img2.jpg
│ │ ├── img3.jpg
│ │ ├── img4.jpg
│ │ ├── img5.jpg
│ │ ├── img6.jpg
│ │ ├── img7.jpg
│ │ ├── img8.jpg
│ │ └── img9.jpg
└── js
│ ├── custom.js
│ ├── fancybox
│ ├── Descr.WD3
│ ├── blank.gif
│ ├── fancybox_loading.gif
│ ├── fancybox_loading_402x.gif
│ ├── fancybox_overlay.png
│ ├── fancybox_sprite.png
│ ├── fancybox_sprite_402x.png
│ ├── jquery.fancybox.css
│ └── jquery.fancybox.pack.js
│ ├── google-map.js
│ ├── html5shiv.js
│ ├── jquery.cslider.js
│ ├── jquery.isotope.min.js
│ ├── modernizr-latest.js
│ └── respond.min.js
├── contact.php
├── course
├── chapter.php
├── footer.php
├── nav.php
└── sidebar.php
├── css
├── chapter1.php
├── chapter2.php
├── chapter3.php
├── chapter4.php
├── chapter5.php
├── chapter6.php
├── compiler.php
├── footer.php
├── images
│ ├── ColorNames.PNG
│ ├── Hexa.PNG
│ ├── Margin.PNG
│ ├── Padding.PNG
│ ├── RGB.PNG
│ └── Syntax.PNG
├── nav.php
└── sidebar.php
├── cssexamination
├── certi.php
├── finalexam.php
├── footer.php
├── index.php
├── nav.php
├── que11.php
├── que12.php
├── que13.php
├── que14.php
├── que15.php
├── que16.php
├── que17.php
├── que18.php
├── que19.php
└── que20.php
├── db
└── project.sql
├── download
├── CSS_intro.pdf
├── Handout_5_PF.pdf
├── css_tutorial.pdf
├── footer.php
├── full.pdf
├── html.pdf
├── index.php
└── nav.php
├── expert
├── Answer.php
├── Suggestion.php
├── footer.php
├── index.php
├── manage.php
└── nav.php
├── expertlogin.php
├── footer.php
├── html
├── chapter1.php
├── chapter10.php
├── chapter11.php
├── chapter12.php
├── chapter13.php
├── chapter14.php
├── chapter2.php
├── chapter3.php
├── chapter4.php
├── chapter5.php
├── chapter6.php
├── chapter7.php
├── chapter8.php
├── chapter9.php
├── compiler.php
├── footer.php
├── images
│ └── html.jpg
├── nav.php
└── sidebar.php
├── htmlexamination
├── certi.php
├── finalexam.php
├── footer.php
├── index.php
├── nav.php
├── que1.php
├── que10.php
├── que2.php
├── que3.php
├── que4.php
├── que5.php
├── que6.php
├── que7.php
├── que8.php
└── que9.php
├── index.php
├── login.php
├── nav.php
├── reg.php
└── user
├── CSS.php
├── HTML.php
├── courses.php
├── footer.php
├── index.php
├── manage.php
├── nav.php
├── new.php
├── purchase.php
└── que.php
/README.md:
--------------------------------------------------------------------------------
1 | # e-learning
2 | This is a simple Online Learing site for Programming Languages designed using Bootstrap, HTML5, CSS3, JS for front-end, MySQL for Database creation and php for back-end.
3 | This site includes online text editor for HTML and CSS and also has experts available which can help the students in queries.
4 | Also, has an admin panel for better control of the database and users.
5 |
6 | Import the database in your choice of Database Tools.
7 | The database file is located in db/project.sql.
8 | I have used the phpmyadmin for creating and storing of my database.
9 |
--------------------------------------------------------------------------------
/admin.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | eLearning - Free Educational Responsive Web Template
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
22 |
27 |
28 |
29 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
Admin Login
43 |
44 |
45 |
46 |
47 |
48 |
63 |
64 | location.href = 'admin/index.php';");
80 |
81 | }
82 | else
83 | {
84 | echo "Username or password is incorrect..Try again";
85 | }
86 | }
87 | }?>
88 |
91 |
92 |
--------------------------------------------------------------------------------
/admin/Delete.php:
--------------------------------------------------------------------------------
1 | location.href = 'manageuser.php';");
28 | }
29 | else
30 | {
31 | echo $result;
32 | }
33 | mysqli_close($strconn);
34 | header("Location: manageuser.php");
35 |
36 | ?>
--------------------------------------------------------------------------------
/admin/addadmin.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
23 |
24 |
25 |
33 |
34 |
35 |
36 |
37 |
Add Admin
38 |
39 |
40 |
41 |
42 |
60 | Successfull";
70 | }
71 | else
72 | {
73 | echo "Something went wrong.Please try again later !
";
74 | }
75 | }
76 | ?>
77 |
80 |
81 |
--------------------------------------------------------------------------------
/admin/deleteexpert.php:
--------------------------------------------------------------------------------
1 | location.href = 'manageuser.php';");
28 | }
29 | else
30 | {
31 | echo $result;
32 | }
33 | mysqli_close($strconn);
34 | header("Location: manageexpert.php");
35 |
36 | ?>
--------------------------------------------------------------------------------
/admin/deleteorder.php:
--------------------------------------------------------------------------------
1 | location.href = 'manageuser.php';");
28 | }
29 | else
30 | {
31 | echo $result;
32 | }
33 | mysqli_close($strconn);
34 | header("Location: order.php");
35 |
36 | ?>
--------------------------------------------------------------------------------
/admin/feedback.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
19 |
20 |
33 |
34 |
35 |
36 |
37 |
Feedback
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | ";
50 | while($row = mysqli_fetch_array($result))
51 | {
52 | //$id=$row["ExpertID"];
53 | echo "
Name : | ".$row["name"]." |
";
54 | echo "Email ID : | ".$row["email"]." |
";
55 | //echo "Subject : | ".$row["Subject"]." |
";
56 | echo "Suggestion : | ".$row["Description"]." |
";
57 | }
58 | echo "";
59 | ?>
60 |
61 |
62 |
63 |
64 |
67 |
68 |
69 |
--------------------------------------------------------------------------------
/admin/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | eLearning - Free Educational Responsive Web Template
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
21 |
22 |
23 |
24 |
42 |
81 |
82 |
--------------------------------------------------------------------------------
/admin/manageexpert.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
19 |
20 |
33 |
34 |
35 |
36 |
37 |
Manage Expert
38 |
39 |
40 |
41 |
42 |
43 |
89 |
92 |
93 |
--------------------------------------------------------------------------------
/admin/manageuser.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
19 |
20 |
33 |
34 |
35 |
36 |
37 |
Manage User
38 |
39 |
40 |
41 |
42 |
43 |
86 |
89 |
90 |
--------------------------------------------------------------------------------
/admin/nav.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | eLearning - Free Educational Responsive Web Template
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
21 |
22 |
23 |
24 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/admin/order.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
19 |
20 |
33 |
34 |
35 |
36 |
37 |
Orders
38 |
39 |
40 |
41 |
42 |
43 |
94 |
97 |
98 |
--------------------------------------------------------------------------------
/admin/subject.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
23 |
24 |
25 |
32 |
33 |
34 |
35 |
36 |
Add Subject
37 |
38 |
39 |
40 |
41 |
42 |
74 | Successfull";
86 | }
87 | else
88 | {
89 | echo "Something went wrong.Please try again later !
";
90 | }
91 | }
92 | ?>
93 |
96 |
97 |
--------------------------------------------------------------------------------
/admin/suggestion.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
19 |
20 |
33 |
34 |
35 |
36 |
37 |
Suggestion From Expert
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | ";
50 | while($row = mysqli_fetch_array($result))
51 | {
52 | $id=$row["ExpertID"];
53 | echo "
Name : | ".$row["Name"]." |
";
54 | echo "Email ID : | ".$row["Email_id"]." |
";
55 | echo "Subject : | ".$row["Subject"]." |
";
56 | echo "Suggestion : | ".$row["Description"]." |
";
57 | }
58 | echo "";
59 | ?>
60 |
61 |
62 |
63 |
64 |
67 |
68 |
--------------------------------------------------------------------------------
/assets/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/assets/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/assets/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/assets/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/assets/images/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/1.jpg
--------------------------------------------------------------------------------
/assets/images/about.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/about.jpg
--------------------------------------------------------------------------------
/assets/images/arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/arrows.png
--------------------------------------------------------------------------------
/assets/images/bg_header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/bg_header.jpg
--------------------------------------------------------------------------------
/assets/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/favicon.png
--------------------------------------------------------------------------------
/assets/images/images.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/images.jpg
--------------------------------------------------------------------------------
/assets/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/logo.png
--------------------------------------------------------------------------------
/assets/images/photo-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/photo-1.jpg
--------------------------------------------------------------------------------
/assets/images/photo-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/photo-2.jpg
--------------------------------------------------------------------------------
/assets/images/photo-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/photo-3.jpg
--------------------------------------------------------------------------------
/assets/images/photo-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/photo-4.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img1.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img2.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img3.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img4.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img5.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img6.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img7.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img8.jpg
--------------------------------------------------------------------------------
/assets/images/portfolio/img9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/images/portfolio/img9.jpg
--------------------------------------------------------------------------------
/assets/js/custom.js:
--------------------------------------------------------------------------------
1 | /*
2 | Theme: eLearning - Free Educational Responsive Web Template
3 | Description: Free to use for personal and commercial use
4 | Author: WebThemez.com
5 | Website: http://webthemez.com
6 | Note: Please do not remove the footer backlink (webthemez.com)--(if you want to remove contact: webthemez@gmail.com)
7 | Licence: Creative Commons Attribution 3.0** - http://creativecommons.org/licenses/by/3.0/
8 | */
9 | jQuery(document).ready(function ($) {
10 | //da slider
11 | $('#da-slider').cslider({
12 | autoplay: true,
13 | bgincrement: 0
14 | });
15 | //Set the carousel options
16 | $('#quote-carousel').carousel({
17 | pause: true,
18 | interval: 4000,
19 | });
20 | // fancybox
21 | $(".fancybox").fancybox();
22 | //isotope
23 | if ($('.isotopeWrapper').length) {
24 | var $container = $('.isotopeWrapper');
25 | var $resize = $('.isotopeWrapper').attr('id');
26 | // initialize isotope
27 | $container.isotope({
28 | itemSelector: '.isotopeItem',
29 | resizable: false, // disable normal resizing
30 | masonry: {
31 | columnWidth: $container.width() / $resize
32 | }
33 | });
34 | $("a[href='#top']").click(function () {
35 | $("html, body").animate({
36 | scrollTop: 0
37 | }, "slow");
38 | return false;
39 | });
40 | $('.navbar-inverse').on('click', 'li a', function () {
41 | $('.navbar-inverse .in').addClass('collapse').removeClass('in').css('height', '1px');
42 | });
43 | $('#filter a').click(function () {
44 | $('#filter a').removeClass('current');
45 | $(this).addClass('current');
46 | var selector = $(this).attr('data-filter');
47 | $container.isotope({
48 | filter: selector,
49 | animationOptions: {
50 | duration: 1000,
51 | easing: 'easeOutQuart',
52 | queue: false
53 | }
54 | });
55 | return false;
56 | });
57 | $(window).smartresize(function () {
58 | $container.isotope({
59 | // update columnWidth to a percentage of container width
60 | masonry: {
61 | columnWidth: $container.width() / $resize
62 | }
63 | });
64 | });
65 | }
66 | });
--------------------------------------------------------------------------------
/assets/js/fancybox/Descr.WD3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/js/fancybox/Descr.WD3
--------------------------------------------------------------------------------
/assets/js/fancybox/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/js/fancybox/blank.gif
--------------------------------------------------------------------------------
/assets/js/fancybox/fancybox_loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/js/fancybox/fancybox_loading.gif
--------------------------------------------------------------------------------
/assets/js/fancybox/fancybox_loading_402x.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/js/fancybox/fancybox_loading_402x.gif
--------------------------------------------------------------------------------
/assets/js/fancybox/fancybox_overlay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/js/fancybox/fancybox_overlay.png
--------------------------------------------------------------------------------
/assets/js/fancybox/fancybox_sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/js/fancybox/fancybox_sprite.png
--------------------------------------------------------------------------------
/assets/js/fancybox/fancybox_sprite_402x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/assets/js/fancybox/fancybox_sprite_402x.png
--------------------------------------------------------------------------------
/assets/js/google-map.js:
--------------------------------------------------------------------------------
1 | var map;
2 | function initialize() {
3 | var mapOptions = {
4 | zoom: 15,
5 | center: new google.maps.LatLng(37.78313383212, -122.4039494991302)
6 | };
7 | map = new google.maps.Map(document.getElementById('map-canvas'),
8 | mapOptions);
9 |
10 | var bounds = {
11 | 17: [[20969, 20970], [50657, 50658]],
12 | 18: [[41939, 41940], [101315, 101317]],
13 | 19: [[83878, 83881], [202631, 202634]],
14 | 20: [[167757, 167763], [405263, 405269]]
15 | };
16 |
17 | var imageMapType = new google.maps.ImageMapType({
18 | getTileUrl: function(coord, zoom) {
19 | if (zoom < 17 || zoom > 20 ||
20 | bounds[zoom][0][0] > coord.x || coord.x > bounds[zoom][0][1] ||
21 | bounds[zoom][1][0] > coord.y || coord.y > bounds[zoom][1][1]) {
22 | return null;
23 | }
24 |
25 | return ['http://www.gstatic.com/io2010maps/tiles/5/L2_',
26 | zoom, '_', coord.x, '_', coord.y, '.png'].join('');
27 | },
28 | tileSize: new google.maps.Size(256, 256)
29 | });
30 |
31 | map.overlayMapTypes.push(imageMapType);
32 |
33 | }
34 |
35 | google.maps.event.addDomListener(window, 'load', initialize);
--------------------------------------------------------------------------------
/assets/js/html5shiv.js:
--------------------------------------------------------------------------------
1 | /*
2 | HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
3 | */
4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x";
6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
8 | if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d
2 |
3 |
4 | eLearning - Free Educational Responsive Web Template
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 |
19 |
20 |
38 |
47 |
48 |
49 |
50 | ';
53 | echo '
Next>>';
54 | ?>
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
65 |
66 |
67 |
68 |
69 |
70 |