Skip to main content

What is Front End Developing?


We have known with a name is "Frond end developing" . We don't know much about it but we have heard though . If you don't know about it then you are at the right site , take a sit .
Let's Start ..

  Basically every websites has two parts : a . Front end part ( Design Part ) 
                                                                   b . Back end part ( Developing Part )

Frond end mean which we can see in a website . Which is view able . Suppose we want to making a calculator . but first we have to design it , right ? That is called front end developer . Let's see
below with an example :





So in the above example I have designed a calculator that is belonging from front end part . And the calculation which could not even see how it has been made ( calculation process  for ex : here 3 + 3 = 6 ) by some languages are called back end process .

Now , if someone wants to be an front end developer , then what should he know for ? Well , let's know about it too ,

     It's must be to know about HTML , CSS , JavaScript . That is main part of being an front end developer . We can take it in level 1 .
Now a days , most of the company required responsive website . Though we can make a website responsive with CSS but for a better knowledge we have to learn about Bootstrap . Which makes website responsive easier , it takes in level 2.I have making a website and I just want to show you a part of the website to show difference between responsive website and without it , just for better understanding . Let's see two example , First is without responsive and another is with 
responsive .














 
      Now if someone wants to grow himself and a better career then he should learn Angular and also react js , Jquery . Which is a framework of JavaScript .

So I hope  this tutorial would be helpful . And start learning from today .
Please follow my Facebook page link below :
            https://www.facebook.com/Code-Religion-795982750772492


 Keep Practicing .. :)
Thank You .

Comments

Popular posts from this blog

What is Class and Object in Oops || definition of Classes & Objects

We can make a program in Procedure oriented like C . But when C++ comes and says about Object Oriented Programming Language ( Oops ) , then Class & Object comes into picture . If we want to make a program in object oriented,then we must have to know about Class & Object which is main attributes of Oops . If you don't know much about it, don't worry . Take a seat , and let's start .   Class is a blueprint of Object where Object is a real world entity . Now whoever reading this blog , consider that I am a Object , that's great .. Now let's see with an example below then will discuss rest   ..       So if I consider Human as a Class & myself as an Object , then its definite I must be some properties and behavior .. So here we can say skin color , age , eye color , height etc as properties of myself . I am 22 year's old so 22 year's is an property and I can talk so here talk() is an function ( behavior ) of myself . So there are s...

What is Variable?

In our School life , we have seen something like a + b = c where,                                                                                  a = 8,                                                                                  b = 2 , so c = ? Well we can solve this mathematical problem , right ? But what if we want to solve the same problem throughout any Programming language , then something called " var " came to picture . So take a seat , and let's start ..   In Programming language, if we want to adding two digits for example 3 + 5 and want to print it , ...

What is a tag or anchor tag in HTML ?

We all can create a HTML page , right ? But What If I want to connect two HTML pages ? Good question.. Don't Worry ,We will discuss about it now .So please take a seat . Let's start .   So , when we want to connect two pages then <a> tag comes in picture.Through this tag we can connect between two HTML document (pages) ,we also can connect an external image and also we can put any website's link.Well ,but where to put the links and also what is <a> tag .  Well , <a> tag is nothing but an element is called anchor element .And it has a attribute is "href (hyper reference)" where we can put the address or the link that where we want to go or we connect with that particular page . But how ..... That I will show you too .. Suppose , we have two pages in a website , is " HOME " and " CONTACT " . So I am gonna show the linking process below with an example :   So , in the above example , we can see two pages...