adventure10.hashnode.devDom ApiWhat is DOM API The DOM API (Document Object Model API) is a core part of web development — it allows JavaScript to interact with, modify, and manipulate the structure and content of web pages dynamically. What is DOM The Document Object Model (DOM) ...Oct 11, 2025·2 min read
adventure10.hashnode.devECMAScript ModulesWhat is ESM? ESM stands for ECMAScript Modules, which is the official standard for modular JavaScript defined in the ECMAScript specification (ES6/ES2015 and later). ESM allows you to split JavaScript code into separate files (modules) that can imp...Oct 11, 2025·3 min read
adventure10.hashnode.devCSS OverlayCSS Overlay A CSS overlay is a styling technique where a semi-transparent layer is placed over an element—often an image or background—to dim it and make the foreground content, such as text, stand out more clearly. Overlay of an image A common use c...Sep 15, 2025·2 min read
adventure10.hashnode.devCSS PositionCSS Position CSS position can be used to control the placement of elements within a web page. The position property can have these values: static - default relative fixed absolute sticky CSS position: static This is the default behavior. Eleme...Sep 14, 2025·3 min read