js-fundamental.hashnode.devArray Methods You Must Know1. The "Ends" of the List: Push & Pop These are the ones you'll use most. They deal with the back of your array. push() — Adding to the end Imagine you're at the store and remember you need milk. You 2d ago·3 min read
webdev12.hashnode.devWhat Emmet Is and How It Helps Write HTML FastWhat Emmet is ? Emmet is a tool that help write HTML faster. Emmet is not a language.It is a shortcut system used inside code editor. You type small codeand Emmet convert it into full HTML structure. Why Emmet is useful for HTML beginners When begin...Jan 31·2 min read
webdev12.hashnode.devCSS Selectors Explained in Simple WordsWhat CSS selectors are ? CSS selector is a way to select HTML elements. CSS can’t apply style directly.It need selector to tell which HTML element should be styled. Selector tell browser:👉 apply this CSS to this element Why CSS selectors are needed...Jan 31·2 min read
webdev12.hashnode.devHTML Basics Explained: Tags, Elements, and Commonly Used HTMLWhat HTML is ? HTML stand’s for Hyper Text Markup Language. HTML is the basic language of web.It tell browser how a website page should look and what content should appear on screen. Browser don’t understand human language, it understand tags and str...Jan 31·3 min read
web-network.hashnode.devUnder the Hood: How a Web Browser Turns Code into WebsitesWhat a browser actually is (beyond “it opens websites”) A browser is not just a website opener. Browser is a software that: talks to servers downloads data understands HTML, CSS, JavaScript shows content on screen When you type a URL and press ...Jan 26·3 min read