Do you know why is accessibility important? If not, you should! The Web is fundamentally designed to work for all people, whatever their hardware, software, language, location, or ability. When the Web meets this goal, it is accessible to people with a diverse range of hearing, movement, sight, and cognitive ability. However, when web sites, applications, technologies, or tools are badly designed, they can create barriers that exclude people from using the Web. What’s more, accessibility is not just for these people. Accessibility is also for browsers that cannot load the content properly, for users that need to see content in big sizes, and alsoRead More →

As the name implies, Chrome Developer Tools is a set of web developer tools built directly into the Google Chrome browser that allows web developers to interfere and manipulate applications via the browser. With this tool you can easily: View and change page’s styles Debug Javascript Code Analyze runtime performance, so you can optimize your code View messages and running JavaScript in the Console To open DevTools, you can right-click anywhere on the page and select inspect element or you can choose the “tools > developer tools” option from the top right menu.   Now I’m going to show you some really useful and simpleRead More →

Have you ever wanted to work at the same project and at the same time with other people? Would you like to save all versions of your code so you can check them after? Do you want to see all the great projects that are currently being developed all over the world? If you answered yes, keep reading! First, let’s understand what is Git and GitHub. The “Git” in GitHub To really understand what is GitHub first we have to know what is Git. Git is an open-source version control system that was started by Linus Trovalds—the same person who created Linux. Git is similarRead More →