Search

Why Did I choose Frontend Web Development

December 19, 2022

Why Did I choose Frontend Web Development

Thuta Sann

Thuta Sann

In this Blog, I will shortly explain about Frontend Web Development instead of BE Development.


Share This Blog To :

Code Snippet

"use client"; import Banner from "../../components/site/Banner" import Header from "../../components/site/Header" import "../../styles/globals.css" import { Provider } from "react-redux"; import ProviderTheme from "../../components/site/Provider" import Mouse from "../../components/site/Mouse" import { store } from "../../store"; export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( <html lang="en"> <body className="transition-all duration-700 bg-gray-100 dark:bg-[#1F2937] text-[#1a1a1a] dark:text-gray-300"> <Provider store={store}> <ProviderTheme> <Header/> <Mouse/> <div className="mt-[10px] px-5 mx-auto max-w-6xl"> <Banner/> {children} </div> </ProviderTheme> </Provider> </body> </html> ) }
Front-end web development, also known as client-side development is the practice of producing HTML, CSS and JavaScript for a website or Web Application so that a user can see and interact with them directly. The challenge associated with front end development is that the tools and techniques used to create the front end of a website change constantly and so the developer needs to constantly be aware of how the field is developing.
The objective of designing a site is to ensure that when the users open up the site they see the information in a format that is easy to read and relevant. This is further complicated by the fact that users now use a large variety of devices with varying screen sizes and resolutions thus forcing the designer to take into consideration these aspects when designing the site. They need to ensure that their site comes up correctly in different browsers (cross-browser), different operating systems (cross-platform) and different devices (cross-device), which requires careful planning on the side of the developer.

Blog Content Image

Frontend Javascript Frameworks

When it comes to choosing a JavaScript framework, there are many factors to consider. For example, do you want a framework that is lightweight and fast or one that is feature-rich and robust? Do you need a framework that is easy to learn or one that has a steep learning curve but provides more features?

Many excellent front-end JavaScript frameworks are available, so it can be tough to decide which is right for your project. To help you decide, I’ve put together a list of the ten best front-end JavaScript frameworks.

See More : https://readwrite.com/10-best-front-end-javascript-frameworks/

@ 2023 Thuta Sann. All Rights Reserved.