# how to create a angular project?

First setup Environment

install the necessary dependencies using node package manager(npm) globally in your system to access the commands,

```bash
npm -i -g @angular/cli
```

Now you have successfully installed **CLI** for your laptop globally to run Angular framework projects.

Now run the following command to create a new angular project.

```bash
ng new new-project-title
```

The command will ask for a few confirmations about CSS your have options like

* plain CSS
    
* Less CSS
    
* SASS CSS
    

after you select the CSS it will create necessary dependencies and project structure of the angular web app.
