frontenddude.hashnode.dev20 Awe-Inspiring Codepen Examples You Can Learn FromCodePen.io is an online code editor that allows you to develop in an open-source environment. You create 'pens' which display a live-preview as you code which is great for testing out bugs, collaborating and discovering the latest design patterns. Co...Feb 7, 2021·4 min read
frontenddude.hashnode.devImportant CSS Concepts To LearnCSS(Cascading Style Sheets) is a rule-based language. It's used to style and lay out pages by defining specific groups of styles that get applied to elements or groups of elements. Many people find themselves learning CSS in conjunction with HTML. Bo...Feb 2, 2021·6 min read
frontenddude.hashnode.devJavaScript Fundamentals: VariablesStoring values that you can later reference is one of programmings most basic and fundamental concepts. In JavaScript these named containers are called variables. Variables can be declared by using three different reserved keywords: var, let or const...Oct 5, 2020·4 min read