Skip to main content

Classifaction of Web-Development:-

 Web Development can be classified into two ways:
Frontend Development
Backend Development
 (Frontend Development)
The part of a website that the user interacts directly is termed as front end. It is also referred to as the ‘client side’ of the application.
Here user can directly interact with the web



    Comments

    Popular posts from this blog

    Use of Switch Case in JAVASCRIPT:

     How to check week day from  week number  ? <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Check week day </ title > </ head > < body >     < script >     var a = prompt ( "enter Week Number" );   switch ( a ){     case '1' :         document . write ( "Monday" );         break ;           case '2' :         document . write ( "Tuesday" );         break ;         case '3' :         document . write ( "Wednesday" );         break ;         case '4' : ...

    Check Greater Number with Javascript

      Check  Greater Number  with Javascript:- <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Check Maximum Number </ title >     < style >         body {             display : flex ;             justify-content : center ;             align-items : center ;             /* border: 1px solid green; */         }         .container {             display : block ;             height : 45vh ;             margin-top : 100...

    Bouncy Ball by css3

     Bouncy Ball by css3 <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Bouncy balls </ title >     < style >         * {             padding : 0 ;             margin : 0 ;             box-sizing : border-box ;         }         body {             background-color : black ;         }         .container {             height : 100vh ;             display : flex ;             justify-cont...