Skip to main content

Posts

Showing posts with the label app.component.html

Related Articles

Adding styles to your Angular App

    How to set up Angular environment                  How to create Angular project                  How to generate component and define routings in Angular Let’s make our app little bit interactive. You can put all your common style of your application to style.css file which applies globally. Copy and paste below code in your style.css file /* You can add global styles to this file, and also import other style files */ @import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap'); $primary: rgb(216, 172, 78); body {     margin: 0;     font-family: 'Nunito', 'sans-serif';     font-size: 18px; } .container {     width: 80%;     margin: 0 auto; }