Posts

Showing posts from September, 2021

What is React Native and why should you learn it in 2021 ?

Hi everyone , Today I am going to be telling all about React Native . So let's start . What is React Native ? React Native is an open -source UI software framework devloped by Facebook . It is used to develop apps for Android and  IOS  by enabling developers to use the React Framework  along with native platform facilities .The latest version of React Native is 0.65 . It is written is Javscript and rendered with native code. Means that your app will use the same native platform API's as the other apps do . Why should you learn it in 2021 ? There are many reasons you need to learn React Native in 2021 .Some of them are , 1 . React Native is highly demanded in the market . 2. Many companies use React Native , Ex: Bloomberg , Uber Eats , Airbnb, Skype , Facebook , Discord etc .   3. React Native developers are also highly demanded in the market . 4. Many people use react native for building their apps . Thank you    

What is CSS syntax ?

Image
Hi everyone , In the previous post I had introduced you to CSS. Today I am going to be telling you about CSS syntax . So let's start .  What is CSS syntax ? The CSS syntax consists of a selector and a declaration block .The CSS code is written inside the style tag and the style tag . Selector A selector is a part of the CSS line that selects what element to target with property/value pair . For example: If you want to change the behavior of the h1 element (Let us say its font size should be 12px ), then you would use h1 as your selector . Declaration A property and its value collectively is known as Declaration . A  declaration is generally that appears between the curly braces .  Property It defines how different elements look on the web page . Font-family, color, background, border all are examples of properties . A property appears before the colon in any line of CSS . Value A value is what appears immediately after the colon in any line of CSS . It is the option chosen for the

Introduction to CSS

Image
 Hi everyone ,This is Amodh and Today I will be telling you all about CSS and I will give you a brief explaination about it . So let's start What is CSS ?  CSS which stands for Cascading style sheets is a styling programming language which is used to style websites and web pages . Many of you know about html . It is the basic webpage or a website. The job of css is simple . It will style the webpage or the website and make it look beautiful and attractive . I will give you a very simple example .  (Car's body) This is HTML . (Car Styled with paint , glass etc) Here the car is styled with paint , glass , chromium etc. This is the styling or CSS . In the next post , I will tell you all more about CSS . This is the end of the post of the guys . Thank you so much for reading . Please comment and share these posts .   Thank you