+ 1
Can u plz explain me about front-end & back-endđ„ș
9 Answers
+ 6
Frontend:It's the part of a website or application that users interact with directly. Everything you see on the screenâbuttons, text, imagesâis the frontend. Itâs usually built with HTML, CSS, and JavaScript.
Backend: Itâs the internal part of a website or application that manages data and the logic behind the scenes. It handles data storage, server operations, and executing actions on the site. Itâs typically built with programming languages like Python, Java, or Node.js.
Like if it was useful))
+ 4
Front: what the user sees.
Back: what happens on the server.
That's it in short)
A site on HTML + CSS + JS is a frontend.
+ 3
For example, HTML and CSS are forntend programming languages (CSS is fully frontend, HTML makes site structure). But you can also write backend in HTML, for example JS, and you can also write HTML and CSS in JS. So frontend is what server/webpage will output, it's interface, and backedn is what happenes in console/terminal, so you can't see it, but it also makes sense in code. But when you'll publish you application/webpage, user will se only frontend(interface). User can also see termina/console, and can make changesn but only for user's device, and after refresh console/terminal changes will be reset.
+ 3
Front-end development primarily involves three key technologies:
1.HTML
2.Css
3.JavaScript
Additionally, many front-end developers use frameworks and libraries built on these technologies, such as:
React: A JavaScript library for building user interfaces, particularly single-page applications.
Vue.js: A progressive JavaScript framework for building user interfaces.
Angular: A platform and framework for building single-page client applications using HTML and TypeScript.
Front-end development tools and preprocessors like Sass (for CSS) and TypeScript (for JavaScript) can also enhance development efficiency and capabilities
Back-end development involves server-side programming and is essential for building the logic, database interactions, and server configurations of a web application. some common programming languages used for back-end development:
1.Python
2.JavaScript (Node.js)
3.Ruby
4PHP
Each of these languages has its own set of frameworks, libraries, and tools that make back-end development effic
+ 2
front end = website
back end = server/internals
+ 1
Frontend ( directly interact with end user like script js,CSS,html) backend ( is as motor of frontend like SQL server, PHP, react.js)
+ 1
The frontend is all about what you see and interact with on a website.
The backend is about the server-side operations that process data and ensure the website functions correctly.
0
Hi ,it seems good
0
sure
Front-End: This is the part of a website that users interact with, covering aspects like layout, design, or interactive features. It uses technologies such as HTML, CSS, and JavaScript.
Back-End: This involves the server-side aspects of a website, including data processing, storage, or server logic. It typically involves programming languages like Python or Java and databases such as MySQL.