Posts

Showing posts from January, 2020

jQuery

Image
What is  ? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript. Including jQuery Below are some of the most common ways to include jQuery. Browser Script tag < script   src = " https://code.jquery.com/jquery-3.4.1.min.js " > < / script > ref in -npm Using jQuery      At its core, jQuery is used to connect with HTML elements in the browser via the DOM. The DOM is the method by which JavaScript (and jQuery) interact with the HTML in a browser. To view exactly what the DOM is, in your web browser, right click on the current web page select Inspect. This will open up Developer Tools. The HTML code you see here is t

GIT & GIT HUB

Image
             Git is a    free & open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.              Git is easy to learn  and has a tiny footprint with lightning fast performing  It outclasses SCM tools like Subversion, CVS, Perforce, and Clear Case with features like cheap local branding, convenient  staging areas ,   and multiple workflows .              What is Git? Git is an open-source distributed version control system. It is designed to handle minor to major projects with high speed and efficiency.  It is developed to co-ordinate the work among the developers. The version control allows us to track and work together with our team members at the same workspace. Git is foundation of many services like GitHub and GitLab, but we can use Git without using any other Git services. Git can be used privately and publicly. Git was created by Linus Torvalds in 2005 to develop Li

Bootstrap

Image
BOOTSTRAP   Bootsrap is framework of css.there are many frame to css.UIkit, Semantic UI, Bulma ,Tailwind etc. It is very easy to use.   If you’re not familiar with how a framework like Bootstrap works, a few code examples will help, so you can see how easy it is to build maintainable interfaces by editing nothing but HTML.   Bootstrap includes HTML and CSS based design templates for typography, forms, buttons, tables, navigation, modals, image carousels and many other, as well as optional JavaScript plugins   Bootstrap also gives you the ability to easily create responsive designs same bootstrap class are    forms :-.text-muted, .text-primary, .text-success, .text-info, .text-warning, .text-danger, .text-secondary, .text-white, .text-dark, .text-body (default body color/often black) and .text-light   buttons :-.btn   tables :-table   navigation:-nav   image:-.img-thumbnail,.rounded-circle

CSS

Image
IT is a language that describes the style of an HTML document and describes how HTML elements should be displayed. When tags like <font>, and color attributes were added to the HTML 3.2 specification, it started a nightmare for web developers. Development of large websites, where fonts and color information were added to every single page, became a long and expensive process. To solve this problem, the World Wide Web Consortium (W3C) created CSS.CSS removed the style formatting from the HTML page! power of css                               A CSS rule-set consists of a selector and a declaration block                                                                     -ref in w3 school- There are the following three types of CSS: Inline CSS.(using in html elements) Internal CSS.(using in html head part) External CSS.(using in addisanal sheet)