Rohit Gawanderohit253.hashnode.dev·Sep 1, 2024"Mastering HTML: Essential Tags and Best Practices for Web Developers"Understanding HTML Elements: A Dive into Tags and Their Usage Welcome to another post on my web development journey! 🚀 Today, we’re diving deep into some fundamental HTML elements that are essential for every web developer to understand. This post w...Full Stack Javascript#HiteshChaudhary
Naresh Chandragirinareshpittu769.hashnode.dev·Mar 25, 2023Learn: ArraySimply Array is to store multiple values in one variable. Syntax: const array_name = [item1, item2, ...]; ( Here we assign array literal to the variable array_name) Why Arrays? If we want to store 3 values we can store in three variables like let car...#ineuronFullstackJavaScriptBootcam2.0
Souvik Nathsouvikn18.hashnode.dev·Mar 15, 2023CSS selectorsCSS is used to style our HTML page. There are so many elements in an HTML page. CSS selectors are mainly used for targetting those elements and applying CSS properties so that we can style those elements. In this article, we will go through some impo...iwritecode
Rohit kodapedevblogs091995.hashnode.dev·Feb 11, 2023CSS Grid: The Essential Guide to Creating Flexible Layouts for the WebIntroduction to CSS Grid CSS Grid is a two-dimensional layout tool for the web that allows you to create rows and columns to structure your web page. It provides a more flexible and easy way to design the layout and placement of elements on a web pag...ineuron
Rudrakshi Thakurrudrakshithakur.hashnode.dev·Feb 5, 2023Introduction to Javascript (DT & Operators)History of Javascript: Before moving onto the datatypes and operators let's dive into the history of javascript! It all started in year 1995 when javascript came into into market and was then known as MOCHA. After an year in 1996 the name changed to ...117 reads#HiteshChaudhary
Salonisaloni1.hashnode.dev·Feb 2, 2023Understanding Prototype and Prototype Chaining in JavaScriptLet's understand Prototype by taking a goal to achieve in mind. Suppose you want to build something like React, ViewerJS, String Library, or a classic Array Library or you want to do some DOM Manipulation. I'm talking about big steps here, like build...79 reads#javaScriptPrototypes
Rohit kodapedevblogs091995.hashnode.dev·Jan 30, 2023CSS Selectors : Types and UsageIntroduction In this article I'm describing CSS selectors and their types with proper examples, using only HTML and CSS. I'm describing how to select any HTML element, and then style it with CSS using CSS selectors of different types. We will also se...36 readsineuron
Rohit kodapedevblogs091995.hashnode.dev·Jan 26, 2023Input & audio/video tags in HTMLInput elements in HTML In HTML, the input field can be specified using where a user can enter data. The input tag is used within < form> element to declare input controls that allow users to input data. An input field can be of various types dependin...33 reads#ineuronFullstackJavaScriptBootcam2.0
Salonisaloni1.hashnode.dev·Jan 13, 2023Guide to JavaScript Objects and Object Methods with easy examplesI'll start this article with a question. So, Why would your website look different from one browser to another? What lies at the center of these browser incompatibility issues? The Answer is the Browser engine. You can think of the browser engine as ...10 likes·32 readsJavaScript Object Methods
Naresh Chandragirinareshpittu769.hashnode.dev·Jan 4, 2023Learn HTML: Html elements and its usage."What is HTML element" The HTML element is defined by the starting tag and ending- tag. syntax : < tagname > content < /tagname > ex: <p>content </p> / here <p> is the paragraph starting tag and </p>is the ending tag. Content should be anything it sh...1 like·27 readsHTML5