AKAshish Kumarinashishkumar25.hashnode.dev·Jun 21, 2025 · 6 min readStyling Your Web JourneyYour First Brush with Style: A Beginner's Guide to CSS Ever wonder how websites transform from plain black-and-white text into the vibrant, engaging experiences we love? That magic, my friends, is largely thanks to CSS. If HTML is the skeleton of a w...00
AKAshish Kumarinstyling-your-web-journey.hashnode.dev·Jun 21, 2025 · 6 min readStyling Your Web JourneyYour First Brush with Style: A Beginner's Guide to CSS Ever wonder how websites transform from plain black-and-white text into the vibrant, engaging experiences we love? That magic, my friends, is largely thanks to CSS. If HTML is the skeleton of a w...00
AKAshish Kumarinashishkumar25.hashnode.dev·May 18, 2025 · 3 min readEver Wondered How Websites Are Made? This Is Where It All Begins!HTML: The Building Blocks of the Web Ever wondered how websites are structured? What gives them their headings, paragraphs, images, and links? The answer lies in something called HTML, or HyperText Markup Language. If you're looking to dive into web ...00
AKAshish Kumarinashishkumar25.hashnode.dev·Jan 14, 2023 · 1 min readCSS Media QueriesCSS Media Queries are used to define different styles rules for different screen sizes. like-laptop,mobiles,Desktops,smart watches etc. Media Queries Syntax:- @media only screen and (screen size){ code... } Value all -- used for all media type d...00
AKAshish Kumarinashishkumar25.hashnode.dev·Jan 10, 2023 · 1 min readObject Prototype and Prototype ChainingPrototype:- In JavaScript, every object has a built-in property whose name is a prototype. The prototype contains some methods and prototypes which are inherited from global or parent objects. We can also say that a prototype is a mechanism that help...00