File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,30 @@ Projeto Feito para desenvolver conhecimento na framework [Angular CLI](https://g
66
77* Angular9 (Framework)
88* TypeScript (Linguagem de programação)
9+ * Bootstrap (Módulo front-end)
10+ * Font Awesome (Módulo front-end)
911
1012## Criando Projeto
13+
1114Tendo o node.js o npm e o angular-cli instalados.
1215```
1316 ng new project
1417```
1518
19+ Instalando Bootstrap no projeto. Documentação [ Boostrap-Oficial] ( https://getbootstrap.com/ ) .
20+
21+ ```
22+ npm install bootstrap
23+ ```
24+ Colocar no CSS global ` @import 'bootstrap/dist/css/bootstrap.min.css'; ` , agora você pode usar as classes do bootstrap em todo projeto.
25+
26+
27+ Instalando Front Awesome no projeto
28+ ```
29+ npm install font-awesome
30+ ```
31+ Colocar no CSS global ` @import 'font-awesome/css/font-awesome.min.css'; ` .
32+
1633## Rodando aplicação
1734
1835Rodando ` ng serve ` para aplicação em desenvolvimento. Navegue para ` http://localhost:4200/ ` .
You can’t perform that action at this time.
0 commit comments