Angular directives are instructions that modify the behavior or appearance of HTML elements within an Angular application. They are used to extend HTML with additional functionality and provide a way to interact with the DOM.
Examples of built-in directives in Angular:
<div *ngIf="showElement">This element is conditionally displayed.</div>
<ul>
<li *ngFor="let item of items">{{ item }}</li>
</ul>
<div [ngStyle]="{ 'color': textColor, 'font-size': fontSize + 'px' }">Styled Text</div>