© 2023 Hashnode
#hiteshchaudhary
CSS: CSS or Cascading Style Sheets, is a language used to make web pages look pretty. It works with HTML(Hyper Text Markup Language) and lets you decide how things like colors, fonts, backgrounds, mar…
CSS 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: foo…
What 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 …
All HTML elements can be considered as boxes. The CSS Box Model In CSS, the term "box model" is used when talking about design and layout. The CSS box model is essentially a box that wraps around eve…
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 posi…
before ES6, JavaScript had only Global and Function scopes which were defined by var keywords. ES6 introduced two important and new JavaScript keywords: let and const which helped developers in reducing the scoping-based bugs. These two key…
What is CSS and CSS Selectors? CSS stands for Cascading Style Sheets and we used to style HTML elements. CSS selectors are used to find (or select) the HTML elements you want to style. Basic Selectors…
Audio Tag: The <audio> tag is specifically used for embedding and playing audio files on a web page. It is suitable for including music, podcasts, sound effects, or any other audio content. The <audio…
Introduction: In JavaScript, arrays are versatile and fundamental data structures used to store and manipulate collections of elements. With a wide range of built-in methods, JavaScript arrays offer p…
Introduction: In today's digital landscape, it is essential to design websites that provide a seamless user experience across a wide range of devices and screen sizes. Media queries, a fundamental com…