Posts

HTML

Image
The article written by Sagar Jaybhay. In this series we can understand HTML tags and other useful information. <!DOCTYPE html> Initial line in html file which tells the browser it uses Html 5.  <!DOCTYPE html> <html> <head> <title>Hello Sagar Jaybhay</title> </head> <body> </body> </html> Html Title by Sagar Jaybhay Most of tags in Html have closing tags but some of don't have closing tags for example img tag . <img src="" alt=""> Why don't some elements have closing tag because they don't contain any child elements in it . Hello World html Code for above example is below <!DOCTYPE html> <html> <head> <title>Hello Sagar Jaybhay</title> </head> <body> <h2>Hello World</h2> <p>Hello Guys</p> <img src="./images/q.jpg" alt="Demo images"> </body> </html> CSS When we want to apply style we

Test Post from Sagar Jaybhay

Test Post from Sagar Jaybhay https://sagarjaybhay.net

How to Start a YouTube Channel Free - Complete Guide

Image
Now a days YouTube is very popular, you many not find single person on earth who don’t know what YouTube is? so let’s understand answer of below three questions What is a YouTube channel?   What is the purpose of the YouTube channel? How to create a YouTube channel? Contents What is a YouTube channel? Purpose of You tube channel Ø      To Show case your talent to the world. Ø      Showcase your art. Ø      Sharing skill or Hobby. Ø      show information to the world and Sharing knowledge. Ø      Promoting your Business. Ø      earn money from youtube. Ø      Increase your social presence on world of internet. How to create YouTube channel?. Step 1 :  Create your Google account (Gmail account). 1.      Open Google signup account https://accounts.google.com/signup. 2.      filled and information and click on NEXT button. 3.      provide mobile number and click on NEXT button. 4.      enter OTP number sent on  phone number and click on NEXT button. 5.      Provide the Recovery mail and pe

How to Start a YouTube Channel Free - Complete Guide

Image
Now a days YouTube is very popular, you many not find single person on earth who don’t know what YouTube is? so let’s understand answer of below three questions What is a YouTube channel?   What is the purpose of the YouTube channel? How to create a YouTube channel? Contents What is a YouTube channel? Purpose of You tube channel Ø      To Show case your talent to the world. Ø      Showcase your art. Ø      Sharing skill or Hobby. Ø      show information to the world and Sharing knowledge. Ø      Promoting your Business. Ø      earn money from youtube. Ø      Increase your social presence on world of internet. How to create YouTube channel?. Step 1 :  Create your Google account (Gmail account). 1.      Open Google signup account https://accounts.google.com/signup. 2.      filled and information and click on NEXT button. 3.      provide mobile number and click on NEXT button. 4.      enter OTP number sent on  phone number and click on NEXT button. 5.      Provide the Recovery mail and pe

How Angular know which module is the startup module?

Image
In this article, we will learn about How Angular 9 knows which module is the startup module and which is not ? Also, we will understand Which conventions Angular team Uses by Sagar Jaybhay . Which One is the startup Module? This is mentioned in the main.ts file and below is coed for this file. import enableProdMode from '@angular/core'; import platformBrowserDynamic from '@angular/platform-browser-dynamic'; import AppModule from './app/app.module'; import environment from './environments/environment'; if (environment.production) enableProdMode(); platformBrowserDynamic().bootstrapModule(AppModule) .catch(err => console.error(err)); platformBrowserDynamic is used to a bootstrap module. This used to set the first module. But another question is ..... How main.ts file is invoked in an angular application? The main.ts file is invoked by index.html file. But if you see the index.html file code we didn’t find any kind of script invocation code because t

How Angular know which module is the startup module?

Image
In this article, we will learn about How Angular 9 knows which module is the startup module and which is not ? Also, we will understand Which conventions Angular team Uses by Sagar Jaybhay . Which One is the startup Module? This is mentioned in the main.ts file and below is coed for this file. import enableProdMode from '@angular/core'; import platformBrowserDynamic from '@angular/platform-browser-dynamic'; import AppModule from './app/app.module'; import environment from './environments/environment'; if (environment.production) enableProdMode(); platformBrowserDynamic().bootstrapModule(AppModule) .catch(err => console.error(err)); platformBrowserDynamic is used to a bootstrap module. This used to set the first module. But another question is ..... How main.ts file is invoked in an angular application? The main.ts file is invoked by index.html file. But if you see the index.html file code we didn’t find any kind of script invocation code because t

You Should Know Use Of This Terms Angular 9

Image
In this article you will understand importance of mainly used terms in Angular 9 by Sagar Jaybhay . You will understand Components, Modules, How angular 9 works? Angular 9 Angular is binding frameworks .  It helps us to bind view and model. In angular, you can have multiple apps inside the src folder. Components In angular, the binding code which binds the UI means our Html and Model is component. Here Component is the part of angular, which receives data from the UI and Sends data back to UI. In an enterprise application, you can have a lot of views, lots of components and lots of models. Modules If you collect different component and group them into one repo is called modules and these component are generally belong to the same modules In by default angular generated boilerplate code which doesn’t contain model but as per requirement we want that and we created in our application. The naming convention for this is app.model.ts . Component In Details In Angular 9: Below is the code