Category: Misc

Tips, Scripts, Tools, Bookmarks, and Inspiration for Web Designers and Developers.

How to Work with REST APIs (Frontend Guide)

How to Work with REST APIs (Frontend Guide)

Introduction Most modern websites rely on APIs to fetch and send data. Whether you’re building a React app or a simple website, understanding how to work with REST APIs is essential. In this guide, I’ll show you how to use REST APIs step by step in a simple and...
What Skills Does a Frontend Developer Need? (Complete Guide)

What Skills Does a Frontend Developer Need? (Complete Guide)

Introduction Frontend development is more than just writing HTML and CSS. It’s a combination of structure, styling, logic, tools, and modern frameworks that work together to create fast, responsive, and user-friendly websites. In this guide, I’ll break down the core...
Animated Cart – with SVG

Animated Cart – with SVG

Here’s an animated cart SVG with meaningful micro-interactions — a wiggle on hover, items “dropping in” to the cart, and a bounce on the wheels:Here’s what’s animated, and why each choice is meaningful: Hover wiggle — the cart body rocks...
Draw any SVG path from 0 to 100% – using GSAP

Draw any SVG path from 0 to 100% – using GSAP

See the Pen Draw any SVG path from 0 to 100% by Puneet Sharma (@webdevpuneet) on CodePen. HTML <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width,...
How to add customised css to CDN hosted ckeditor

How to add customised css to CDN hosted ckeditor

Method 1 – Load CKEditor via CDN and Configure Custom CSS: <script src=”https://cdn.ckeditor.com/4.16.2/standard/ckeditor.js”></script> <script> CKEDITOR.replace(‘editor1’, { contentsCss: ‘path/to/your/custom.css’ });...