pranjalipranjali14.hashnode.dev·Dec 28, 2023Selectors In CSSThe first question is what is selectors and Why we need them? CSS selectors are the patterns which helps to select the HTML Element which we want to style. And Why we need them, Imagine you have the whole webpage and you want style it but you don’t k...Discuss·11 likes·49 readsiwritecode
Sarvesh Deshmukhsarveshdeshmukh.hashnode.dev·Aug 1, 2023Introduction to Web applicationWhat is a web application? A web application is a software application that is hosted on a web server and is accessible to users through a web browser. Web applications are used for a variety of purposes, including e-commerce, social networking, and ...Discuss·27 readsWeb Development
Ankit Dixitankitdixit.hashnode.dev·Jun 10, 2023Audio and video tagAudio Tag: The <audio> tag is used to embed audio content, such as music or sound effects, into web pages. The src attribute specifies the URL or file path of the audio file you want to embed. Example: <audio src="audiofile.mp3"></audio> You can...Discussiwritecode
TEJA MANDAPATItonyteja6s.hashnode.dev·May 30, 2023CSS GridCSS Grid Layout Module <!DOCTYPE html> <html> <head> <style> .item1 { grid-area: header; } .item2 { grid-area: menu; } .item3 { grid-area: main; } .item4 { grid-area: right; } .item5 { grid-area: footer; } .grid-container { display: grid; grid-...Discussiwritecode
TEJA MANDAPATItonyteja6s.hashnode.dev·May 30, 2023Media QueryWhat is a Media Query? Media query is a CSS technique introduced in CSS3. It uses the @media rule to include a block of CSS properties only if a certain condition is true. Add a Breakpoint Earlier in this tutorial we made a web page with rows and col...Discussiwritecode
TEJA MANDAPATItonyteja6s.hashnode.dev·May 30, 2023Positioning (CSS)The position property specifies the type of positioning method used for an element (static, relative, fixed, absolute or sticky). The position Property The position property specifies the type of positioning method used for an element. There are five...Discussiwritecode
Rahulrahul1010.hashnode.dev·Apr 2, 2023My first backed ProgramHow to Create Express Backend program lets understand step by step:- First we need to go to the directory and folder-where we want to create our node js program so we will use command prompt in our pc. ( let suppose FSJS is the folder and the loca...Discuss·38 reads@anuragtiwarime
Anas Qureshicodeflasher.hashnode.dev·Mar 19, 2023CSS Position PropertyWhat is CSS Position property? CSS position is a property that is used to specify how an HTML element should be positioned on a web page. The position property has several values, including static, relative, absolute, fixed, and sticky, which determi...Discuss·66 readscss position
Mounika Sangishettymounikasangishetty.hashnode.dev·Feb 13, 2023How does CSS work?What is CSS? CSS stands for Cascading Style Sheets. CSS is a style sheet language not a programming language like HTML. CSS is used to style the HTML elements on the web page, which means decorating the web page with a certain font, color, background...Anusha Dokuparthi and 2 others are discussing this3 people are discussing thisDiscuss·2 likes·62 readsiwritecode
Gaurav Patilgauravpatil.hashnode.dev·Jan 13, 2023Prototype and Prototype ChainingIntroduction Every object in JavaScript has certain pre-defined methods, as we have seen. I first saw the term "prototype" in JavaScript while I was using console.log() for an object in the browser console. What is prototype? In JavaScript, every fu...Discuss·2 likes·66 readsiwritecode