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 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…

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…

Basics Of Email

Basics Of Email E-mail is an acronym for Electronic mail. It is an online message delivery system. Emails are a popular way of sending information because it delivers message to the recipient within seconds of sending it. Emails are usually used to do formal conversation. By means of an email Read more…

Flash- Web Framework

Flash is a high performance, open-source web application framework. Flash web framework follows the MVT (Model-View-Template) architectural pattern or you can say MVC (Model-View-Controller) pattern because the controller is handle by the system. Flash is fast, lightweight, powerful, simple, and easy to use. It allows users to create web applications in Read more…