What is Django?

Django is a python framework for web applications, as it allows developers to use modules for faster development. As a developer, you can make use of these modules to create apps, websites from an existing source. It speeds up the development process greatly, as you do not have to code Read more…

Responsive Web Design

HTML Responsive Web Design Responsive web design is about creating web pages that look good on all devices! A responsive web design will automatically adjust for different screen sizes and view-ports. What is Responsive Web Design? Responsive Web Design is about using HTML and CSS to automatically resize, hide, shrink, Read more…

What is WordPress?

WordPress technology is an open source Content Management System, which allows its users to build or build dynamic websites and blog pages. WordPress is one of the most popular blogging system available on the web and it allows updating, customizing and managing the website from its own back-end CMS and Read more…

What is PHP?

PHP code is executed on the server. What You Should Already Know Before you continue you should have a basic understanding of the following: HTML CSS JavaScript If you want to study these subjects first, find the tutorials on our Home page.   What is PHP? PHP is an acronym Read more…

What is Bootstrap?

Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites. Bootstrap 4 is the newest version of Bootstrap Bootstrap Example: <!DOCTYPE html> <html lang=”en”> <head> <title>Bootstrap Example</title> <meta charset=”utf-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1″> <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css”> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script src=”https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js”></script> <script src=”https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js”></script> </head> <body> <div class=”jumbotron text-center”> Read more…

What is AJAX?

AJAX is a developer’s dream, because you can: Read data from a web server – after a web page has loaded Update a web page without reloading the page Send data to a web server – in the background Example : <!DOCTYPE html> <html> <body> <div id=”demo”> <h2>The XMLHttpRequest Object</h2> Read more…

What is npm?

npm is the world’s largest Software Library (Registry) npm is also a software Package Manager and Installer The World’s Largest Software Registry (Library) npm is the world’s largest Software Registry. The registry contains over 800,000 code packages. Open-source developers use npm to share software. Many organizations also use npm to Read more…

What is React?

React is a JavaScript library created by Facebook React is a User Interface (UI) library React is a tool for building UI components Adding React to an HTML Page This quickstart tutorial will add React to a page like this: Example <!DOCTYPE html> <html lang=”en”> <title>Test React</title><!– Load React API Read more…

What is XML?

XML stands for eXtensible Markup Language XML plays an important role in many different IT systems XML is often used for distributing data over the Internet It is important for all web developers to have a good understanding of XML XML Example 1 <?xml version=”1.0″ encoding=”UTF-8″?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> Read more…