April 2018
Intermediate
110 pages
2h 12m
English
The default generated Angular application does not have any styling.
Angular does not dictate anything in terms of style, so in your own projects, you can use any other style framework, such as Angular Material, Foundation, Semantic UI, or one of the many others. Alternatively, you can create your own styles from scratch to get a unique look and feel.
For this book, though, we will stick to Bootstrap 4 and Font Awesome as they're widely used and they provide a great style with a minimal amount of added code.
As discussed in the previous section, our application comes with a global style sheet, src/styles.css.
In this style sheet, we will use the @import command to link to Bootstrap ...