Skip to main content

Other Tool in Web Development


JavaScript-JavaScript is a lightweight, interpreted, dynamic programming language that is used to make dynamic web pages and applications. It was came out in 1995 with the name LiveScript but afterwards its name is changed into JavaScript as it is integrated with Java.

Bootstrap- It is the most popular framework for faster and easier web-development. The reason why we use bootstrap is that it is supported by almost all popular browsers, easily get started (anyone who has knowledge of just HTML & CSS can start with it), its responsive design, it also contains JavaScript plugins.

AJAX (Asynchronous JavaScript and XML)-

It is a group of coherent client-side & server-side technologies by using which we can update a part of a webpage instead of reloading the whole webpage. We can take the examples of sites like YouTube, Gmail, Google-maps, tabs within Facebook etc. It increases the speed and usability of web pages and application.

JQuery- It is JavaScript library which simplifies HTML document animation, traversing, event handling & AJAX interactions. Hence, it simplifies various tasks by writing less code.

•      Conclusion-

Back in the time, websites were simple, static and we can say kind of boring. But through the process of web-development, various new advancements and achievements take place each and every year. And today, we can do a lot of new things, as fill the forms, play games & watch videos, load portion of other websites within a page etc. This field is full of scope, you just have to be little hard-working and creative. HTML is the base of front-end as it defines the structure of the things we want in our page. It is the organizer. And CSS is the designer of our page. We can add animations as well in our page. Front end development is crucial because a website must look clean, attractive andfunctional to appeal to clients/users and maintain their interest. Wrong development can drive away the business also. In this increasing web-based world first impression of a site is the really important for normal use as well as for business perspective

Comments

Popular posts from this blog

Cascading Style Sheet

  CSS ( The Stylist ) HTML is responsible for all the core foundation and CSS is responsible designing of webpage like pretty layout, add colors to your font, change the font-size and font-style etc. Both are used together.               Hence we can say that- “It is a language for specifying how documents/web-pages are presented to the user.” By the use of CSS, we can manage what the color of text, style of fonts, background color and images, spaces between the paragraphs, variation in display for different devices and screen size should be, how columns are sized etc. It gives us the control over presentation of the document.   History and versions- It was invented by HakonWium Lie in 1994 and maintained by a group of people within the W3C (World Wide Web Consortium). This group creates docs. called ‘specifications’. After a discussion by W3C members, it becomes a ‘recommendation’. In December 1996, C...

JAVASCRIPT (JS)

  INTRODUCTION JS is very versatile Client-Side language. JS is mostly used for developing the understanding between the webpage and a client. We can also say, a webpage can be made more appealing and spirited, with the assistance of JS. JS may run on most of the internet browsers and on any Operating System. JavaScript is the number one and one of the best coding languages in the world and also very easy. JS along with CSS and HTML makes up the core building blocks of the Internet and the World Wide Web . Application of JavaScript in Web Development ·        JavaScript is utilized for creating web pages. ·        JavaScript is a stand-alone language which is developed in Netscape. ·        JavaScript is used when a website is to be made interactive and add special transitions used by all websites for the cause of validation. ·        JavaScript can ...

History and versions

  - HTML was created by Tim Berners Lee in 1991. He considered it to be an application of SGML (Standard Generalized Markup Language).”HTML 2.0” was published in 1995. “HTML 4.01” was published in 1999. Although “HTML 4.01” version is widely used yet currently “HTML 5” is used more commonly and it was published in 2014.    HTML was originally developed with the intention of evaluating the structure of document like headings, lists, paragraphs etc. to give the facility of sharing information between scholars.   But now, it is being   commonly used for format web-pages .   o How we write code in HTML/Use- HTML is specified as TAGS in an HTML document. HTML Tags- It is basically word or group of words enclosed between Angle Brackets as <html>. Usually, These Tags comes in pair as <h1>   &   </h1> , that are wrapped around some text. They are called Container tags. 1st tag in the pair is opening tag and the 2nd one i...