Git Tutorial

Using Various HTML Elements

Using Input Elements Adding Text Input Modify the src/app/app.component.html file: In src/app/app.component.ts: Using Combo Box (Dropdown) Adding a Combo Box In src/app/app.component.ts: Using Checkboxes Adding a Checkbox In src/app/app.component.ts: Using Option Buttons (Radio Buttons) Adding Radio Buttons In src/app/app.component.ts: Using Tables Displaying a Static Table Dynamic Table with Angular In app.component.ts: In app.component.html: Using Buttons […]

Using Various HTML Elements Read More »

Git Tutorial

Multiple Components

Angular applications are built using components, which are the building blocks of the framework. A component in Angular controls a portion of the user interface and consists of a TypeScript class, an HTML template, and an optional CSS stylesheet. When building large applications, it’s common to divide the app into multiple components for better organization

Multiple Components Read More »