Angular Tutorial
Angular Home Angular Intro Angular Get Started Angular First App Angular TemplatesAdvanced Angular
Angular App Bootstrap Angular Control Flow Angular Signals Angular Change Detection Angular Dynamic Comp Angular Advanced DI Angular Router Advanced Angular HTTP Interceptors Angular Forms Advanced Angular State Management Angular Animations Angular Testing Angular Security Angular SSR & HydrationAngular Exercises
Angular Compiler Angular Exercises Angular Quiz Angular ServerAngular Tutorial
Learn Angular
Angular is a framework for building client applications in HTML and TypeScript.
Start learning Angular now »Overview & Prerequisites
Learn Angular step-by-step with easy-to-follow pages and runnable JS-only examples.
We use standalone components, modern control flow, and the built-in Router and HttpClient in examples.
Prerequisites:
- Basic HTML, CSS, and JavaScript.
- Some TypeScript helps but is not required.
Learning by Examples
Our "Show Angular" tool makes it easy to demonstrate Angular.
It shows both the code and the result.
Example:
import { bootstrapApplication } from '@angular/platform-browser';
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
standalone: true,
template: `<h1>Hello Angular!</h1>`
})
export class App {}
bootstrapApplication(App);
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Angular App</title>
</head>
<body>
<app-root></app-root>
</body>
</html>
Learning by Exercises
Many chapters in this tutorial end with an exercise where you can check you level of knowledge.
Angular Quiz
Test your Angular skills with a quiz.
Track Your Progress
Create a W3Schools account and get access to more features and learning materials:
View your completed tutorials, exercises, and quizzes
Keep an eye on your progress and daily streaks
Join the leaderboard and compete with others
Get your own avatar and unlock new skins
Create your own personal website
Note
This is an optional feature. You can study at W3Schools without creating an account.
Contact Sales
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com
Report Error
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com
Top Tutorials
HTML TutorialCSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial
Top References
HTML ReferenceCSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
AngularJS Reference
jQuery Reference
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookies and privacy policy.
Copyright 1999-2026 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.
