This is a curated roadmap to becoming a professional Front-end Developer that anyone could use to learn about the practice of front-end development.
📖 → Official Docs | 🎬 → Video
📄 → Article | 🎬📃🎬 → Course
🗺️ Content | ||
1-Introduction | 2-Before you start | 3-Front-end Development Tech/Spec Overview |
4-Required for any path | 5-Basic tools | 6-Level One (HTML, CSS, JS) ✨ |
7-Level Two ✨ | 8-Level Three ✨ | 9-What Next?! |
Front-end development involves using HTML, CSS, and JavaScript to build a client-side application. The client-side of an online application is the visual part of a web application and also what a user interacts with when an application is opened: colours, fonts, buttons, navigations, animations, etc.
Front-end development includes the user interface of an application. Everything a user interacts with when a user visits a website such as a login or sign-up page, homepage, contact page falls under the front-end development term.
A front-end developer is responsible for building and implementing the interface of a website or web application. They build client-side applications using web technologies such as HTML, CSS, and JavaScript.
In 2021 however, front-end development has gone beyond HTML, CSS, and JavaScript. There are a lot of web technologies you need to learn to be able to excel as a front-end developer this year.
I will endeavor to cover all you need to get started with front-end development in 2023.
First, you should read about The Front-end Developer Profession 📄
- Front-end Developer Role
- Required Skills
- Job Titles
- The World Wide Web (aka WWW)
- Internet Fundamentals & How it Works
- Hypertext Transfer Protocol (aka HTTP)
- Uniform Resource Locators (aka URL)
- Browsers and How The Web Works
- DNS, Domain Name and Hosting
skip what you already familiar with 🤝
- The Front-end Development Tech/Spec Overview 📄
- World Wide Web (WWW) Basic Mechanics 📄
- How does the Internet work?
- What is HTTP?
- How Browsers Work?
- DNS and how it works?
- Domain Name
There are some tools required for any path such as Basic Terminal Usage (Command line), Git - Version Control & Github.
Note:
Learn these tools in parallel with the rest of the courses.
The terminal is an interface used to execute text commands, and it gives you access to the underlying operating system. Basic terminal usage is a skill all developers need regardless of their specialization. Command line is very important so I strongly recommend you study more on how to use it.
If you are on windows like me, I recommend using git bash.
Here are some resources to learn command line:
Git is a version control system that enables developers to track changes in their project. Git also helps developers collaborate as a team. Git is needed among developers, to ensure that there are no code conflicts between developers.
GitHub is a code hosting platform for software development. GitHub lets teams work together on projects and it is also used for version control. It can be used among teams to collaborate on a project. For example, a team of developers wants to build a web application and everyone is given a task that has to be updated daily while working on the project, in this case, Github helps them build a centralized repository where each team member can make updates or manage the code file or repository.
Here are some resources to learn Git & GitHub:
- Git Handbook - Github guides 📄
- Git Videos 🎬📃🎬
- Git Cheat Sheet repo 📄
- Git book - Git 📄
- Github Guides 📄
- Version Control with Git - Udacity 🎬📃🎬
- Introduction to Git and GitHub from Google 🎬📃🎬
- An introduction to Git - Freecodecamp 📄
- Git & GitHub Arabic Tutorial 🎬📃🎬
- Learn Git and GitHub 🎬📃🎬
- learn Git in Arabic 🎬📃🎬
- Git Tutorial for Beginners: Learn Git in 1 Hour - Code with Mosh 🎬
- Git and GitHub for Beginners - Crash Course - Freecodecamp 🎬
Basic tools to get start.
Text Editor ✍️ | Browser 🌐 | 👨💻 Terminal |
VS Code ☑️ | Google Chrome ☑️ | Git Bash ☑️ |
Atom | Microsoft Edge | Cmder |
WebStorm | Mozilla Firefox | Hyper |
HTML stands for Hypertext Markup Language. It is the markup language for building web pages, it is also the building block of the web. HTML is easy to learn and comprehend. With just HTML, you can build a basic website.
Here are some resources to learn HTML:
- Learning resources and tools for HTML - Front-End Masters 📄 ✨💫
- Learn HTML - Elzero Web School 📄 ✨💫
- MDN - HTML 📄
- Learn HTML - web.dev 📄
recommended
- Learn Forms - web.dev 📄
recommended
- HTML Full Course - Freecodecamp 🎬
- HTML Crash Course For Absolute Beginners - Traversy Media 🎬
For writing maintainable and scalable HTML documents, check this repo HTML Best Practices
CSS stands for Cascading Style Sheets. It is the technology to learn after HTML. It is used for styling our HTML. For example, we can use CSS to space our content, colours, fonts, etc.
Here are some resources to learn CSS:
- Learn CSS - Elzero Web School 📄 ✨💫
- MDN - CSS 📄
- Web.dev - Learn CSS 📄
recommended
- Web.dev - Learn Responsive Design 📄
recommended
💡 Take a look at this repository - Awesome-CSS-Learning - A tiny list limited to the best CSS Learning Resources.
The basics of CSS you need to learn are:
- Basics, Box Model, Colors & Gridents, Units ➡️ CSS Fundamentals 📄
- Flow, Positioning, Floats, Flex box, Grids ➡️ CSS Layout 📄
- Responsive Design & Media Queries ➡️ CSS Media Queries 📄
- Animations ➡️ CSS Transitions, Transforms & Animation 📄
- Web Fonts, CSS Icons, Google Fonts ➡️ CSS Fonts & Icons 📄
- CSS Variables & CSS Practices ➡️ CSS Practices 📄
In this section, I will recommend some paid courses and YouTubevideos that explain and build websites using HTML and CSS. Plus some websites to practice what you've learned.
Here are some Paid Courses for HTML & CSS: 🎬📃🎬 💵💵
- Build Responsive Real-World Websites with HTML and CSS
- Modern HTML & CSS From The Beginning (Including Sass) ➡️
exclude sass from it now
- CSS - The Complete Guide 2021 (incl. Flexbox, Grid & Sass) ➡️
exclude sass from it now
Here are some YouTubeVideos for building templates with HTML & CSS:
- Practical HTML & CSS - Elzero Web School 📄
- Design Template Using ( HTML 5 - CSS 3 ) - Unique Coderz Academy 🎬📃🎬
- Design Responsive Template Using ( HTML - CSS - Media Query ) - Unique Coderz Academy 🎬📃🎬
- Traversy Media
- How To Make Website Using HTML & CSS | Full Responsive - Easy Tutorials 🎬📃🎬
- Frontend Masters Web Development Bootcamp ->
included JS
Some challenges for what you have learned, Try 🦾🦾😃
After Learning HTML & CSS read this ➡️ HTML Interview Questions 📄 & CSS Interview Questions 📄
JavaScript is one of the most popular programming languages in the world. It is the language of the web. As a front-end developer, it is required you learn JavaScript. JavaScript enables us to create dynamic content. When you create your HTML structure and your style with your CSS, JavaScript makes the website dynamic and alive.
💡💡 Learning Javascript and practicing on it continues with you to the end of the path and will not end.
On this level, we will learn the basics of JavaScript
- JavaScript Fundamentals
- DOM Manipulation & BOM
- AJAX, Fetch API and JSON
- ES6+ & Modular JS
- Web APIs
- Object-oriented Programming (OOP)
- Regular Expressions (Regex)
general skill
- JavaScript Algorithms and Data Structures | Design Patterns
Here are some resources to learn JavaScript:
- MDN - JavaScript 📄
- Learn JavaScript - Elzero Web School 📄 ✨💫
- JavaScript Samurai كورس جافاسكربت من الصفر حتى الاحتراف 🎬📃🎬
- JavaScript.INFO 📄
- Eloquent JavaScript 📕
- Learn JavaScript - Freecodecamp 🎬
- Traversy Media
- JavaScript Tutorial for Beginners - Clever programmers 🎬
- JavaScript Tutorial for Beginners - Programming with Mosh 🎬
- 30 Days of JavaScript repo 📄
💡 Take a look at this repository - Awesome-JavaScript-Learning - A tiny list limited to the best JavaScript Learning Resources.
Here are some resources to learn Regular Expressions (Regex):
- Regular Expressions Demystified 🎬📃🎬
- Regular Expression tutorial - Arabic 🎬📃🎬
The implementation is not in JavaScript but explains the concept of Regex in a nice way
- Regular Expressions (RegEx) Tutorial 🎬📃🎬
- Regular expressions - MDN 📄
Here are some YouTubeVideos for practice on JavaScript.:
- JavaScript Practice - Elzero Web School 📄
- HTML | CSS | JavaScript | Projects - Shadow Coding 🎬📃🎬
- Build 15 JavaScript Projects - Vanilla JavaScript Course - FreeCodeCamp 🎬
- Traversy Media
- Learn JavaScript by Building 7 Games - Full Course - FreeCodeCamp 🎬
- Build A Weather App in HTML CSS & JavaScript | Weather App in JavaScript 🎬
- Build A Music App With Javascript Tutorial 🎬
Here are some Paid Courses for JavaScript: 🎬📃🎬 💵💵
- JavaScript - The Complete Guide 2021 (Beginner + Advanced) 🎬📃🎬 ✨💫
- Modern JavaScript (Complete guide, from Novice to Ninja) 🎬📃🎬
- Modern JavaScript From The Beginning 🎬📃🎬
- 50 Projects In 50 Days - HTML, CSS & JavaScript 🎬📃🎬
Here are some resources to learn JavaScript Algorithms, Data Structures and Design Patterns:
- JavaScript Algorithms and Data Structures - freeCodeCamp 📄
- JavaScript Algorithms and Data Structures Masterclass 🎬📃🎬 💵💵
- Master the Coding Interview: Data Structures + Algorithms 🎬📃🎬 💵💵
- Data Structure : JavaScript (leetcode problem-solving) - Shadow Coding 🎬📃🎬
- JavaScript Algorithms and Data Structures 🎬📃🎬
- Learning JavaScript Design Patterns 📄
- JavaScript Design Patterns – Explained with Examples 📄
- Design Patterns | javascript 🎬📃🎬
After Learning JavaScript read this ➡️ JavaScript Interview Questions 📄 & 37 Essential JavaScript Interview Questions 📄
Digital accessibility, commonly abbreviated a11y, is about designing and building websites and web apps that disabled people can interact with in a meaningful and equivalent way.
Here are some resources to learn HTML:
- Learn Accessibility - Web.dev 📄 ✨💫
- Learn Accessibility - MDN 📄
- Web Accessibility - Udacity 🎬📃🎬
- Web Accessibility: Getting Started - pluralsight 🎬📃🎬
🗺️ Content | |||
1- Web Developer Tools | 2- Package Managers | 3-CSS Architecture | |
4-CSS Preprocessors | 5- CSS Frameworks (CSS UI Toolkits) | 6-JavaScript Libraries |
Learning Resources:
- Introduction to Dev Tools, v3 🎬📃🎬 💵💵
- Chrome DevTools Docs 📄
- Google Chrome Developer Tools Crash Course 🎬
- 21+ Browser Dev Tools & Tips You Need To Know 🎬
a package manager is a piece of software that lets you manage the dependencies (external code written by you or someone else) that your project needs to work correctly.
Learning Resources:
BEM methodology gives your CSS code a solid structure that remains simple, easy to understand and easy to modify
Learning Resources:
- BEM 📄
- BEM Cheat Sheet 📄
- Organize your CSS code using BEM 🎬
- You Probably Need BEM CSS in Your Life (Tutorial) 🎬
CSS preprocessors are scripting languages that extend the default capabilities of CSS. They enable us to use logic in our CSS code, such as variables, nesting, inheritance, mixins, functions, and mathematical operations. CSS preprocessors make it easy to automate repetitive tasks, reduce the number of errors and code bloat, create reusable code snippets, and ensure backward compatibility.
Sass is a preprocessor scripting language that is interpreted or compiled into Cascading Style Sheets. SassScript is the scripting language itself. Sass consists of two syntaxes (sass/scss).
Learning Resources:
- Sass Docs 📖
- Sass Fundamentals 🎬📃🎬 💵💵
- Learn Sass - Elzero Web School 📄 ✨💫
- Sass Tutorial for Beginners - CSS With Superpowers 🎬
- Sass and BEM for beginners 🎬
- Create Web Design With Sass 🎬📃🎬
- SASS Tutorial (Build Your Own CSS Library) 🎬📃🎬
Utility Toolkits
UI + Utility Toolkits
A JavaScript library is a library of pre-written JavaScript code that allows for easier development.
💡 Search about what you want, and you will find a library to do it.
Articles about recommended js libraries::
- 10 Awesome JavaScript Libraries You Should Try Out in 2021 📄
- 39 of the best JavaScript libraries and frameworks to try in 2021 📄
🗺️ Content | ||
1-Module Bundlers | 2-JavaScript Frameworks | |
3-Testing | 4-TypeScript | 5-Progressive Web Apps (PWA) |
A JavaScript module bundler compiles small pieces of code (aka modules) into something larger and more complex, such as a library or application.
Learning Resources:
In this section, you will learn about JavaScript Frameworks, JavaScript State Management and Server side rendering.
JavaScript frameworks:
JavaScript frameworks are tools designed to speed up development and organize code used to build modern web apps. They exist to solve problems more directly rather than providing an open set of tools like most libraries do. Many modern companies use frameworks as a standard part of their tooling, so many front-end development jobs require framework experience.
JavaScript State Management:
State Management helps in updating the UI in related places when there is a change in the application data due to action performed in the application like click, hover, etc. It also helps in making sure that state changes have been incorporated at corresponding places.
Server side rendering:
Server-side rendering (SSR), is the ability of an application to contribute by displaying the web-page on the server instead of rendering it in the browser. Server-side sends a fully rendered page to the client; the client's JavaScript bundle takes over which then allows the Vue.js app to hydrate.
Top 3 Javascript Frameworks:
💡 Before you start learning a framework I recommend watching this tutorial 🎬📃🎬. and this tutorial 🎬📃🎬.
Learning Resources for Vue.js:
- Vue Docs 📖
- Vue School
- Vue Mastery
- Vue Router 📖 ->
Ecosystem: The official Router for Vue.js
- Pinia Docs 📖 ->
Ecosystem: The intuitive store for Vue.js
- Vue - The Complete Guide (w/ Router, Vuex, Composition API) 🎬📃🎬 💵💵
- Complete Vue Developer 2023: Zero to Mastery (Pinia, Vitest) 🎬📃🎬 💵💵
- Vue 3 Crash Course | Project From Scratch 🎬
- The Ultimate Vue 3 Tutorial (100% Composition API) 🎬
- Build with Ben: Vue 3 and TypeScript Working Session 🎬
- Vue JS 3 Tutorial for Beginners 🎬📃🎬
- Vue.js 3 Tutorial - The Net Ninja 🎬📃🎬
- Vue.js Tutorial: Beginner to Front-End Developer 🎬
Learning Resources For NuxtJS:
NuxtJS is a Server-Side Vue Framework, with some architectural opinions that can be useful to creating maintainable applications, even if you don’t use any of the Server Side Rendering features it provides.
- NuxtJS 📖
- Nuxt.js 3 Fundamentals 🎬📃🎬 💵
- Mastering Nuxt 3 🎬📃🎬 💵
- Nuxt 3 Tutorial - The Net Ninja 🎬📃🎬
- The Nuxt 3 Crash Course 🎬
- Nuxt 3 - Building a Complete Project 🎬
- Nuxt 3 full course build and deploy 🎬
- Learn Nuxt 3 — Full course for beginners 2023 🎬
Learning Resources for React.js:
- React Docs 📖
- React Hooks 📖
- React Hooks 🎬📃🎬
- React Hooks 🎬📃🎬
- React Router 📖
- React Router 6 🎬📃🎬
- React Router 6 🎬📃🎬
- What is state Management 📖 ->
Read about state management to know what you should learn 👇
- Redux Toolkit 📖
- Recoil 📖
- MobX 📖
- Redux 🎬📃🎬
- Redux Toolkit 🎬📃🎬
- Style in React 📖
- API Calls 📖
-
Rest
- Axios 📖
- SWR 📖
- React Query 🎬📃🎬
-
GraphQL
-
Learn the difference between Unit, Integration, and Functional tests and learn how to write them.
Learning Resources For unit testing with Vitest:
Learning Resources For unit testing with Jest:
JavaScript Unit Testing - The Practical Guide 🎬📃🎬💵💵 - Learn how to write automated tests (unit & integration tests) with Vitest & Jest.
TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.
Visit the following resources to learn more:
- What Is TypeScript? 📄
- Official Website 📖
- Learn TypeScript - Elzero Web School 📄 ✨💫
- TypeScript Course for Beginners - Learn TypeScript from Scratch! 🎬
- Learn TypeScript – Full Tutorial 🎬
- Understanding TypeScript 🎬📃🎬 💵💵
- What is PWA? Web.dev 📄
Learning Resources:
- Progressive Web Apps 📄
- Learn PWA - web.dev 📄
- PWA Tutorial for Beginners 🎬📃🎬
- Progressive Web Apps (PWA) - The Complete Guide 🎬📃🎬 💵💵
Always Keep Learning, Practice more, and don't stop.