Git Tutorial

Angular Directives

Directives are classes that allow you to add behaviour to elements in your Angular application. They are one of the fundamental building blocks of Angular that make it highly dynamic. There are two primary types of directives: Let’s dive into each category with examples. Attribute Directives NgClass The NgClass directive is used to dynamically add

Angular Directives Read More »

Git Tutorial

Angular Pipes

Pipes in Angular are a way to transform data in templates. They allow you to format and transform data dynamically without modifying the underlying component logic. This tutorial explains how to use built-in pipes, create custom pipes, and demonstrates their applications with examples. What Are Pipes Pipes are simple functions that accept an input value,

Angular Pipes Read More »

Git Tutorial

Angular Data Binding

This tutorial demonstrates how to use Angular’s different types of data binding in a standalone component setup. Standalone components allow us to create Angular components without needing to declare them in an NgModule. We will demonstrate the following data bindings: 1. One-Way Data Binding (Interpolation) Displays data from the component in the template. 2. Two-Way

Angular Data Binding Read More »

Git Tutorial

Bootstrap and Font-Awesome

Follow these steps to install and configure bootstrap and font-awesome packages in Angular To see the bootstrap documentation pls visit the site https://getbootstrap.com/ We have installed the free version of font-awesome, to see the documentation You can visit below font-awesome site links to see more details https://fontawesome.com/v4/ https://fontawesome.com/v4/examples/#basic https://fontawesome.com/v4/examples/#animated Add Styles to angular.json After installation,

Bootstrap and Font-Awesome Read More »