├── 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 | 47 |
48 |
49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 |
62 |
63 |
64 | location.href = 'admin/index.php';"); 80 | 81 | } 82 | else 83 | { 84 | echo ""; 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 | 42 |
43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 |
59 |
60 | Successfull"; 70 | } 71 | else 72 | { 73 | echo ""; 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 | 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 | 42 |
43 |
44 |
45 |
46 |
47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | '; 72 | echo ''; 73 | echo ''; 74 | echo ''; 75 | echo ''; 76 | echo ''; 77 | echo ''; 78 | echo ''; 79 | 80 | echo ""; 81 | echo ''; 82 | } 83 | ?> 84 |
User IDFirst NameMiddle NameLast NameEmail IDGenderUser Name#
'.$id.''.$fname.''.$mname.''.$lname.''.$email.''.$gender.''.$userName.'Delete
85 |
86 |
87 |
88 |
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 | 42 |
43 |
44 |
45 |
46 |
47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | '; 70 | echo ''; 71 | echo ''; 72 | echo ''; 73 | echo ''; 74 | echo ''; 75 | echo ''; 76 | 77 | echo ""; 78 | echo ''; 79 | } 80 | ?> 81 |
User IDFirst NameLast NameGenderEmail IDUser Name#
'.$id.''.$fname.''.$lname.''.$gender.''.$email.''.$userName.'Delete
82 |
83 |
84 |
85 |
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 | 42 |
43 |
44 |
45 |
46 |
47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | '; 75 | echo ''; 76 | echo ''; 77 | echo ''; 78 | echo ''; 79 | echo ''; 80 | echo ''; 81 | echo ''; 82 | echo ''; 83 | echo ''; 84 | 85 | echo ""; 86 | echo ''; 87 | } 88 | ?> 89 |
Order NoBook NameFull NameAddressCityPin CodeStateEmail IDMobile No#
'.$orderno.''.$bookname.''.$name.''.$address.''.$city.''.$pincode.''.$state.''.$email.''.$mobile.'Delete order
90 |
91 |
92 |
93 |
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 | 41 |
42 |
43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 55 | 56 | 57 | 58 | 59 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 |
73 |
74 | Successfull"; 86 | } 87 | else 88 | { 89 | echo ""; 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 | 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 | 71 | -------------------------------------------------------------------------------- /course/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 | -------------------------------------------------------------------------------- /course/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 | -------------------------------------------------------------------------------- /course/sidebar.php: -------------------------------------------------------------------------------- 1 | 7 | ';?> 8 |

Index

9 | 19 | ';?> -------------------------------------------------------------------------------- /css/compiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | eLearning - Free Educational Responsive Web Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 25 | 26 | 27 | 28 | 37 | 38 | 39 |
40 |
41 |
42 | 45 |

46 | 47 | 48 |
49 | 61 |
62 |
63 |
64 |
65 |
66 | 67 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /css/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 | -------------------------------------------------------------------------------- /css/images/ColorNames.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/css/images/ColorNames.PNG -------------------------------------------------------------------------------- /css/images/Hexa.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/css/images/Hexa.PNG -------------------------------------------------------------------------------- /css/images/Margin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/css/images/Margin.PNG -------------------------------------------------------------------------------- /css/images/Padding.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/css/images/Padding.PNG -------------------------------------------------------------------------------- /css/images/RGB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/css/images/RGB.PNG -------------------------------------------------------------------------------- /css/images/Syntax.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/css/images/Syntax.PNG -------------------------------------------------------------------------------- /css/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 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /css/sidebar.php: -------------------------------------------------------------------------------- 1 | ';?> 2 |

Index

3 | 11 | ';?> -------------------------------------------------------------------------------- /cssexamination/certi.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | About - Techro Bootstrap template 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | 24 | 25 | 44 | 45 | 51 | 52 |
54 |
56 | Certificate of 57 | Completion 58 |

59 | This is to certify that 60 |

61 |
62 |
63 | has completed the css exam
64 |
65 | 66 | 67 |



68 | 69 | 70 | 72 | 73 |
74 |
75 |

76 | 77 |
79 | Home 80 |
-------------------------------------------------------------------------------- /cssexamination/finalexam.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 40 | 41 | 42 | 51 |
52 |
53 |

Congratulation!!

54 |

You have completed CSS test to get your certificate click below.


55 | 56 |
57 |
58 |
59 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /cssexamination/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 | 80 | 81 | -------------------------------------------------------------------------------- /cssexamination/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |

CSS Examination

43 |

The test contains 10 questions . it's a nice way to see how much you know, or don't know, aboutCSS.

44 |

At the end of the exam you will get certificate.

45 |

Good Luck!!

46 | Start>> 47 |
48 | 49 |


50 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /cssexamination/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 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /cssexamination/que11.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

1. What does CSS stand for?

45 |
46 | 47 |
48 |
49 | 50 |
51 |
52 | 53 |
54 |
55 | 56 |
57 | 58 | Next>>'; 66 | } 67 | else 68 | { 69 | echo ""; 70 | } 71 | } 72 | ?> 73 |
74 |
75 |
76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que12.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

2. What is the correct HTML for referring to an external style sheet?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que13.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

3. Which property is used to change the background color?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que14.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

4. How do you add a background color for all elements?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que15.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

5. Which CSS property controls the text size?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que16.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

6. What is the correct CSS syntax for making all the elements bold?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que17.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

7. How do you change the font of an element?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que18.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

8. How do you change the left margin of an element?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que19.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

9. How do you make a list that lists its items with squares?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /cssexamination/que20.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |

10. Where in an HTML document is the correct place to refer to an external style sheet?

45 |
46 |
47 | 48 |
49 |
50 | 51 |
52 |
53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 | 76 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /download/CSS_intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/download/CSS_intro.pdf -------------------------------------------------------------------------------- /download/Handout_5_PF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/download/Handout_5_PF.pdf -------------------------------------------------------------------------------- /download/css_tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/download/css_tutorial.pdf -------------------------------------------------------------------------------- /download/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 | -------------------------------------------------------------------------------- /download/full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/download/full.pdf -------------------------------------------------------------------------------- /download/html.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/download/html.pdf -------------------------------------------------------------------------------- /download/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |

HTML & CSS E-Books

43 |

These e-Books are free to download

44 |

1)HTML Basics

45 |

This book unveils the key features of HTML.This books provide a practical guide to building webpages using HTML5

46 |
Download
47 | 48 |

2)CSS Tutorials

49 |

This tutorial covers all versions and gives a complete understanding of CSS, starting from its basics to advanced concepts.

50 |
Download
51 | 52 |

3)CSS_intro

53 |

This book gives a complete understanding from basic to advance.

54 |
Download
55 | 56 |

4)CSS

57 |

All about CSS.

58 |
Download
59 | 60 |

5)Complete HTML

61 |

This book covers all topics of HTML.

62 |
Download 63 |
64 | 65 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /download/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 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /expert/Answer.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 | 42 |
43 | 44 | 52 |
53 |
54 |
55 |
56 | 58 | 63 |
64 |


65 | Next>> 66 | 67 | 71 | Answer sent to user
"; 90 | } 91 | else 92 | { 93 | echo ""; 94 | 95 | } 96 | } 97 | } 98 | 99 | ?> 100 |
101 |
102 | 103 |
104 | 107 | 108 | -------------------------------------------------------------------------------- /expert/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 | 82 | 83 | -------------------------------------------------------------------------------- /expert/index.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 | 42 |
43 |
44 |
45 | 80 |
81 |
82 | 85 | 86 | -------------------------------------------------------------------------------- /expert/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 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /expertlogin.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 | 26 | 27 | 28 | 35 | 44 |
45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 |
59 |
60 | location.href = 'expert/index.php';"); 76 | } 77 | else 78 | { 79 | echo ""; 80 | 81 | } 82 | } 83 | }?> 84 | 87 | 88 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 24 | 65 | 66 | -------------------------------------------------------------------------------- /html/compiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | eLearning - Free Educational Responsive Web Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 25 | 26 | 27 | 28 | 37 | 38 | 39 |
40 |
41 |
42 | 45 |

46 | 47 | 48 |
49 | 61 |
62 |
63 |
64 |
65 |
66 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /html/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 | -------------------------------------------------------------------------------- /html/images/html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParthVarde/e-learning/73476d4092629c73977f705a9df19078becc2914/html/images/html.jpg -------------------------------------------------------------------------------- /html/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 | -------------------------------------------------------------------------------- /html/sidebar.php: -------------------------------------------------------------------------------- 1 | ';?> 2 |

Index

3 | 19 | ';?> -------------------------------------------------------------------------------- /htmlexamination/certi.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | About - Techro Bootstrap template 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | 24 | 25 | 44 | 45 | 51 | 52 |
54 |
56 | Certificate of 57 | Completion 58 |

59 | This is to certify that 60 |

61 |
62 |
63 | has completed the html exam
64 |
65 | 66 | 67 |



68 | 69 | 70 | 72 | 73 |
74 |
75 |

76 | 77 |
79 | Home 80 |
-------------------------------------------------------------------------------- /htmlexamination/finalexam.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 40 | 41 | 42 | 51 |
52 |
53 |

Congratulation!!

54 |

You have completed HTML test to get your certificate click below.


55 | 56 |
57 |
58 |
59 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /htmlexamination/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 | 80 | 81 | -------------------------------------------------------------------------------- /htmlexamination/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 40 | 41 | 42 | 51 |
52 |

HTML Examination

53 |

The test contains 10 questions and there is no time limit.it's a nice way to see how much you know or don't know about HTML.

54 |

At the end of the exam you will get certificate.

55 |

Good Luck!!

56 | Start>> 57 |
58 |
59 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /htmlexamination/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 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /htmlexamination/que1.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

1. What does HTML stand for?

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 | 54 |
55 | 56 |
57 | 58 | 59 |
60 | 61 |
62 | Next>>'; 70 | } 71 | else 72 | { 73 | echo ""; 74 | } 75 | } 76 | ?> 77 |
78 |
79 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /htmlexamination/que10.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

10. What is the correct HTML for inserting an image?

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que2.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

2. Who is making the Web standards?

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que3.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

3. Choose the correct HTML tag for the largest heading

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que4.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

4. Choose the correct HTML tag to make a text bold

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que5.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

5. HTML supports

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que6.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

6. How can you make a list that lists the items with numbers?

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que7.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

7. How can you make a list that lists the items with bullets?

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que8.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

8. What is the name of every homepage on the WWW?

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /htmlexamination/que9.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 41 |
42 |
43 |
44 |
45 |

9. Choose the correct HTML tag to make a text italic

46 |
47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | Next>>'; 68 | } 69 | else 70 | { 71 | echo ""; 72 | } 73 | } 74 | ?> 75 |
76 |
77 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | eLearning - Free Educational Responsive Website 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | 24 | 33 | 34 | 35 | 58 | 59 | 60 |
61 | 89 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /nav.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /user/CSS.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | eLearning - Free Educational Responsive Web Template 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 19 | 20 | 21 | 24 | 33 |
34 |

CSS Fundamentals


35 |
36 |
37 |

Chapters :

    38 |
  1. Chapter 1: What is CSS?
  2. 39 |
  3. Chapter 2: Three Ways to Insert CSS
  4. 40 |
  5. Chapter 3: CSS Colors
  6. 41 |
  7. Chapter 4: Border Style
  8. 42 |
  9. Chapter 5: CSS Margins
  10. 43 |
  11. Chapter 6: CSS Padding
  12. 44 |
45 |
46 |
47 | 48 |
49 | 50 | 53 | 54 | -------------------------------------------------------------------------------- /user/HTML.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 | 26 | 35 |
36 |

HTML Fundamentals


37 |
38 |
39 |

Chapters :

  1. Chapter 1: What is HTML?
  2. 40 |
  3. Chapter 2: Write HTML Using Notepad TextEdit
  4. Chapter 3: HTML Headings
  5. Chapter 4:HTML Attributes
  6. 41 |
  7. Chapter 5:HTML Horizontal Rules
  8. Chapter 6: HTML Text Formatting
  9. Chapter 7: The HTML'; echo htmlspecialchars($str); ?> element defines a short quotation.
  10. 42 |
  11. Chapter 8: HTML Comment Tags
  12. Chapter 9: Chapter 9:HTML Lists
  13. Chapter 10: The'; echo htmlspecialchars($str); ?> Element
  14. 43 |
  15. Chapter 11: HTML Iframes
  16. Chapter 12: The'; echo htmlspecialchars($str); ?> Element
  17. 44 |
  18. Chapter 13: The'; echo htmlspecialchars($str); ?> Element
  19. 45 |
  20. Chapter 14: Input Type Text
  21. 46 |

47 |
48 |
49 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /user/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 |
43 |
44 | 51 | 52 |
53 | 54 |
55 |
56 |
57 |
58 | 59 |
60 |
61 |

62 | Home | 63 | Logout | 64 |

65 |
66 |
67 | 68 |
69 |
70 |

71 | Copyright © Parth Varde parthvarde 72 |

73 |
74 |
75 | 76 |
77 | 78 |
79 |
80 |
81 | 82 | -------------------------------------------------------------------------------- /user/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | About - Techro Bootstrap template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | Something went wrong try login again.
"; 36 | 37 | } 38 | ?> 39 | 40 | 41 | 50 |
51 |
52 |

Online Courses

53 | 88 |
89 |
90 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /user/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 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /user/new.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 | 44 | 53 |
54 |


55 |
56 |
57 |

Chapters :

58 |
  • Chapter :'.$row[0].'
  • '; 69 | } ?> 70 | 76 |
    77 |
    78 |
    79 | 82 | 83 | 84 | --------------------------------------------------------------------------------