Skip to main content

Learn web developement for free

 Learn web developement for free 

If you ever wanted to learn web developement and you do not have the money to pay to the expensive online courses. Here i came to help you to give you a list of website were tou can learn web developement for free and even some of the listed sites will give you certificates for the completion of the course.

You can easily can start learning from these sites . Some things i want to tell you that if you master the any course you must be consistent and practice what you have learn.

1. Coursera (Visit) and Udemy (Visit

These are the two platforms where you can get huge list of free and paid courses not only  limited web development. In these platform you can get good free courses. They have courses in the form of video lectures.
In Coursera you can get apply for a course scholarship. If your application got selected you can get a paid course for free.
Most of the courses on these platforms reward you with certificates and have some tests after some videos which help you to learn quick and make you implement what you have learn.

2. Free Code Camp (Visit)

If you wanted to learn code at home build some awesome projects and earn certificate for what you have learn then Free Code Camp is for you.
They made web development learning easy you can read their documentry online or you are the guy who do not like reading then you can check out their youtube channel freecodecamp.org with 1.1k videos. You probably find what you will look for.

3.W3schools (Visit)

If you ever google anything about web development then you must have come across W3schools. This is the first website from which i have started learning web development. They have a list of  tutorials for HTML and CSS, programing language (python, java, c++, c#), server side and XML.
They also have a exercise section where you can test your skills and enhance them. W3schools also provide certificate for successful completion of course.
W3schools also have their own online text editor in which you can check what you have learn and modify that and see result instantly side by side. 

4. The Odin Project (Visit)

The Odin Project is one of the popular websites to learn web developement.
They have  offer a list of courses. They also have their own community forum which is good. They organize code challenges and many more.

5. CSS-trick (Visit)

Want to learn front end development or want to make you website more attractive this can possibly be done by CSS. Without CSS all the websites would be a plane text this is why CSS is like makeup to the websites. And if you want to learn how to make your sites sites more attractive then check out CSS-trick. 
They provide a CSS guide for everything from building nav-bar to hamburger menus.
They have a section called guides in which you get web development guides to improve your skills and enhance your knowledge.







Popular posts from this blog

Best Text Editor in 2020 for windows, max, linux.

What is a text editor? A editor  is a program that allows you to open, view and edit plain text files. Unlike word processor, text editors do not add formatting to text, instead focussing on editing functions for plain text. Like notepad, but in order to provide most of the modern conveniences like syntax linting, error correction, project folders organisation and build tools now text editors provide all this and much more. Best text editors in 2020 are :- 1. Sublime Text Sublime text allows you to write code efficiently. Here you can do all that you want to do within the coding process, and it has lots of plugins and packages to customize the platform directly to your needs. Sublime text is build on python and c++. The latest version of sublime text is known as sublime text 3.   Top features of Sublime Text  Go to anything using this you can open files with only a few keystrokes and instantly jumps to symbols, lines or words. Multip...

Typescript overview

 TypeScript overview TypeScript is an open-source object oriented language developed and maintained by Microsoft. As its name suggests it is related to JavaScript. It extends JavaScript by adding features which originally JavaScript lags. TypeScript was first released in October 2012. Why to use TypeScript JavaScript is a programing language used primarily by web browsers to create a dynamic and interactive experience for the users. But like every other programing language it has its own flaws which leads the developers in spending more time in debugging than coding. TypeScript solves a major portion of problems in JavaScript. TypeScript simplifies JavaScript code, make it easier to read and debug. In the following way. TypeScript adds a robust system of types TypeScript. If you are from a typed language background like c, c++, java then you will know that in JavaScript there are no types by default. That means it is very easy to make errors in JavaScript like syntax, code logics o...