Abhay Kumarab4k.hashnode.dev·Sep 1, 2023CSS GridIntroduction In the ever-evolving world of web design, CSS Grid has emerged as a revolutionary layout system that empowers developers and designers to create complex and responsive page layouts with ease. In this article, we'll explore what CSS Grid ...Discussiwritecode
Abhay Kumarab4k.hashnode.dev·Sep 1, 2023Responsive Web Design : CSS Media QueriesIntroduction In today's diverse digital landscape, creating a web experience that adapts seamlessly to a variety of devices and screen sizes is essential. CSS Media Queries provide a powerful toolset for achieving responsive web design. In this artic...DiscussWeb Development
Abhay Kumarab4k.hashnode.dev·Sep 1, 2023CSS Box ModelThe CSS Box Model is an important thing to know about in web design. It helps with how stuff looks and fits on web pages. This article will explain what the CSS Box Model is and why it's important. What is the CSS Box Model? The CSS Box Model is like...Discussiwritecode
Abhay Kumarab4k.hashnode.dev·Aug 27, 2023Arrays & its methods in JavaScriptIntroduction to JavaScript JavaScript is a scripting language and we all know that it is very different from any other programming language. JavaScript is mostly referred to as JS and is a very powerful language. The functionalities of websites and w...Discusswebdev
Sudhanshu kumarsudhanshumodi.hashnode.dev·Aug 11, 2023Prototype in JavaScriptLet's understand prototype with a question Let's just say I have a really simple method or string here that, hey I want to simply have some functionality so I am going to say let myName = "Sudhanshu" Notice here how many characters are there What is...DiscussJavaScript
Sudhanshu kumarsudhanshumodi.hashnode.dev·Aug 10, 2023JavaScript ObjectsThere are two types of Datatypes in JavaScript, primitive and non-primitive. An object is non-primitive datatype. Nearly all objects in JavaScript are instances of Object; a typical object inherits properties (including methods) from Object.prototype...Discussiwritecode
SHASHI KANT SINGHsksinghdev.hashnode.dev·Aug 10, 2023First Day Of Developer Journey (html)First of all, Html means ''HYPER TEXT MARKUP LANGUAGE''. This is basic thing for developing web pages. It is basically used to make basic layout , structure etc. of web pages by which 50% of website is developed by this language. we use different cod...Discussiwritecode
Saurabh Pandeysaurabhblogs.hashnode.dev·Aug 6, 2023CSS PositioningCSS positioning is a powerful technique used to control the layout and positioning of HTML elements on a web page. It allows developers to precisely place elements in specific locations on the page, control their stacking order, and create complex la...DiscussCSS3
Abhay Kumarab4k.hashnode.dev·Jul 31, 2023CSS Positioning : The Dance of ElementsPosition in CSS CSS is used for beautifying the webpage, CSS positioning is very crucial in moving elements from one place to another place, or aligning them here and there as per design requirements. When moving one element, we always have to mind t...Discussiwritecode
Rajesh Kumar Barikrajeshkbarik.hashnode.dev·Jul 28, 2023Audio Tag And Video TagAudio Tag The <audio> tag specifies a standard way to insert an audio file into a web page. It can be used in any format like mp3,ogg,wav, etc Syntax: <audio> <source src=" sample.mp3" type="audio"/> </audio> Attributes: Controls: Defines what contr...Discussiwritecode