Heading Tags

You can use different sizes for your headings. HTML has six levels of headings, which use the elements , , , , , and . While displaying any heading, browser adds one line before and one line after that heading. Heading Example This is heading 1 This is heading 2 This is heading 3 This […]

How to install node JS

For installing node and NPM follow below steps: 1. Download the appropriate installer from below link Download 2. Run the installer (the .msi file you downloaded in the previous step.) 3. Test node JS is installed or not. (i) check node version by node -v (ii) check NPM version npm -v

How to create angular2 project ?

Please follow below steps for create angular2 project: Step 1. Set up the Development Environment (Install the angular-cli globally) npm install -g @angular/cli Step 2. Create a new project (my-app is the project name) ng new my-app Step 3: Serve the application cd my-app ng serve –open