components and templates
As previously learned, components are basic elements of an angular application. The main task of the Angular Component is to generate a webpage portion called a view. Each component will have a connected template and will be used to generate views.
Adding a Component
Now let's go back to the application, we made previously. So let's add one component to our angular app. To add a component we'll need to open the command prompt (CMD) and enter the following syntax:
Here, the name of my component is ''tutor" and if you want to add a space, then the underscore represents the space because we cannot add space in the command prompt.
By typing this syntax, angular generates four files for our application. It updates the root module and creates a new template and component along with a style sheet.
output
https://getbootstrap.com/docs/5.2/getting-started/introduction/
Here is a link you can copy and paste into chrome and learn everything about bootstrap.
Bootstrap
If you want to include bootstrap in your application using the style option and change the default template for using bootstrap components, open the command prompt and go to your application.